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
2ed9054f
Commit
2ed9054f
authored
Nov 18, 2019
by
wangyongshou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add handover request acknowledge msg
parent
1beec125
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
488 additions
and
0 deletions
+488
-0
src/NgapSmfLayer/ng_pdu_handover_request_acknowledge.c
src/NgapSmfLayer/ng_pdu_handover_request_acknowledge.c
+475
-0
src/NgapSmfLayer/ng_pdu_handover_request_acknowledge.h
src/NgapSmfLayer/ng_pdu_handover_request_acknowledge.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
+5
-0
No files found.
src/NgapSmfLayer/ng_pdu_handover_request_acknowledge.c
0 → 100755
View file @
2ed9054f
This diff is collapsed.
Click to expand it.
src/NgapSmfLayer/ng_pdu_handover_request_acknowledge.h
0 → 100755
View file @
2ed9054f
#ifndef NG_PDU_HANDOVER_REQUEST_ACKNOWLEDGE_H_
#define NG_PDU_HANDOVER_REQUEST_ACKNOWLEDGE_H_
int
make_NGAP_PduHandOver_Req_Ack
(
const
char
*
inputBuf
,
const
char
*
outputBuf
);
#endif
src/smf_app/CMakeLists.txt
View file @
2ed9054f
...
...
@@ -46,6 +46,7 @@ add_library (SMF STATIC
${
SRC_TOP_DIR
}
/NgapSmfLayer/ng_pdu_handover_required.c
${
SRC_TOP_DIR
}
/NgapSmfLayer/ng_pdu_handover_command.c
${
SRC_TOP_DIR
}
/NgapSmfLayer/ng_pdu_handover_preparation_failure.c
${
SRC_TOP_DIR
}
/NgapSmfLayer/ng_pdu_handover_request_acknowledge.c
smf_app.cpp
smf_config.cpp
smf_context.cpp
...
...
src/smf_app/smf_app.cpp
View file @
2ed9054f
...
...
@@ -58,6 +58,8 @@ extern "C"{
#include "../NgapSmfLayer/ng_pdu_handover_required.h"
#include "../NgapSmfLayer/ng_pdu_handover_command.h"
#include "../NgapSmfLayer/ng_pdu_handover_preparation_failure.h"
#include "../NgapSmfLayer/ng_pdu_handover_request_acknowledge.h"
}
#include <stdexcept>
...
...
@@ -2408,6 +2410,9 @@ void smf_app::create_n2_sm_information(std::shared_ptr<itti_n11_create_sm_contex
make_NGAP_PduHandOverCommand
(
""
,
""
);
make_NGAP_PduHandOverPreFailure
(
""
,
""
);
make_NGAP_PduHandOver_Req_Ack
(
""
,
""
);
//make_NGAP_PduSessionResourceReleaseCommand("", "");
//make_NGAP_pdu_session_resource_setup_request();
...
...
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