Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-SMF
Commits
83d74ee8
Commit
83d74ee8
authored
Nov 18, 2019
by
wangyongshou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add handover notify msg
parent
5cdf7a7c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
388 additions
and
0 deletions
+388
-0
src/NgapSmfLayer/ng_pdu_handover_notify.c
src/NgapSmfLayer/ng_pdu_handover_notify.c
+378
-0
src/NgapSmfLayer/ng_pdu_handover_notify.h
src/NgapSmfLayer/ng_pdu_handover_notify.h
+7
-0
src/smf_app/CMakeLists.txt
src/smf_app/CMakeLists.txt
+1
-0
src/smf_app/smf_app.cpp
src/smf_app/smf_app.cpp
+2
-0
No files found.
src/NgapSmfLayer/ng_pdu_handover_notify.c
0 → 100755
View file @
83d74ee8
This diff is collapsed.
Click to expand it.
src/NgapSmfLayer/ng_pdu_handover_notify.h
0 → 100755
View file @
83d74ee8
#ifndef NG_PDU_HANDOVER_NOTIFY_H_
#define NG_PDU_HANDOVER_NOTIFY_H_
int
make_NGAP_PduHandOver_Notify
(
const
char
*
inputBuf
,
const
char
*
outputBuf
);
#endif
src/smf_app/CMakeLists.txt
View file @
83d74ee8
...
...
@@ -48,6 +48,7 @@ add_library (SMF STATIC
${
SRC_TOP_DIR
}
/NgapSmfLayer/ng_pdu_handover_preparation_failure.c
${
SRC_TOP_DIR
}
/NgapSmfLayer/ng_pdu_handover_request_acknowledge.c
${
SRC_TOP_DIR
}
/NgapSmfLayer/ng_pdu_handover_failure.c
${
SRC_TOP_DIR
}
/NgapSmfLayer/ng_pdu_handover_notify.c
smf_app.cpp
smf_config.cpp
smf_context.cpp
...
...
src/smf_app/smf_app.cpp
View file @
83d74ee8
...
...
@@ -60,6 +60,7 @@ extern "C"{
#include "../NgapSmfLayer/ng_pdu_handover_preparation_failure.h"
#include "../NgapSmfLayer/ng_pdu_handover_request_acknowledge.h"
#include "../NgapSmfLayer/ng_pdu_handover_failure.h"
#include "../NgapSmfLayer/ng_pdu_handover_notify.h"
}
#include <stdexcept>
...
...
@@ -2413,6 +2414,7 @@ void smf_app::create_n2_sm_information(std::shared_ptr<itti_n11_create_sm_contex
make_NGAP_PduHandOver_Req_Ack
(
""
,
""
);
make_NGAP_PduHandOver_Failure
(
""
,
""
);
make_NGAP_PduHandOver_Notify
(
""
,
""
);
//make_NGAP_PduSessionResourceReleaseCommand("", "");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment