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