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
f2ae7a1a
Commit
f2ae7a1a
authored
Nov 19, 2019
by
wangyongshou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add path switch request msg,problem: AMF_UE_NGAP_ID, decode failed
parent
83d74ee8
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
592 additions
and
0 deletions
+592
-0
src/NgapSmfLayer/ng_pdu_path_switch_request.c
src/NgapSmfLayer/ng_pdu_path_switch_request.c
+583
-0
src/NgapSmfLayer/ng_pdu_path_switch_request.h
src/NgapSmfLayer/ng_pdu_path_switch_request.h
+5
-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
+3
-0
No files found.
src/NgapSmfLayer/ng_pdu_path_switch_request.c
0 → 100755
View file @
f2ae7a1a
This diff is collapsed.
Click to expand it.
src/NgapSmfLayer/ng_pdu_path_switch_request.h
0 → 100755
View file @
f2ae7a1a
#ifndef NG_PDU_PATH_SWITCH_REQUEST_H_
#define NG_PDU_PATH_SWITCH_REQUEST_H_
int
make_NGAP_PduPathSwitchRequest
(
const
char
*
inputBuf
,
const
char
*
OutputBuf
);
#endif
src/smf_app/CMakeLists.txt
View file @
f2ae7a1a
...
...
@@ -49,6 +49,7 @@ add_library (SMF STATIC
${
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
${
SRC_TOP_DIR
}
/NgapSmfLayer/ng_pdu_path_switch_request.c
smf_app.cpp
smf_config.cpp
smf_context.cpp
...
...
src/smf_app/smf_app.cpp
View file @
f2ae7a1a
...
...
@@ -61,6 +61,7 @@ extern "C"{
#include "../NgapSmfLayer/ng_pdu_handover_request_acknowledge.h"
#include "../NgapSmfLayer/ng_pdu_handover_failure.h"
#include "../NgapSmfLayer/ng_pdu_handover_notify.h"
#include "../NgapSmfLayer/ng_pdu_path_switch_request.h"
}
#include <stdexcept>
...
...
@@ -2416,6 +2417,8 @@ void smf_app::create_n2_sm_information(std::shared_ptr<itti_n11_create_sm_contex
make_NGAP_PduHandOver_Failure
(
""
,
""
);
make_NGAP_PduHandOver_Notify
(
""
,
""
);
make_NGAP_PduPathSwitchRequest
(
""
,
""
);
//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