Commit 2ed9054f authored by wangyongshou's avatar wangyongshou

add handover request acknowledge msg

parent 1beec125
This diff is collapsed.
#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
...@@ -46,6 +46,7 @@ add_library (SMF STATIC ...@@ -46,6 +46,7 @@ add_library (SMF STATIC
${SRC_TOP_DIR}/NgapSmfLayer/ng_pdu_handover_required.c ${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_command.c
${SRC_TOP_DIR}/NgapSmfLayer/ng_pdu_handover_preparation_failure.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_app.cpp
smf_config.cpp smf_config.cpp
smf_context.cpp smf_context.cpp
......
...@@ -58,6 +58,8 @@ extern "C"{ ...@@ -58,6 +58,8 @@ extern "C"{
#include "../NgapSmfLayer/ng_pdu_handover_required.h" #include "../NgapSmfLayer/ng_pdu_handover_required.h"
#include "../NgapSmfLayer/ng_pdu_handover_command.h" #include "../NgapSmfLayer/ng_pdu_handover_command.h"
#include "../NgapSmfLayer/ng_pdu_handover_preparation_failure.h" #include "../NgapSmfLayer/ng_pdu_handover_preparation_failure.h"
#include "../NgapSmfLayer/ng_pdu_handover_request_acknowledge.h"
} }
#include <stdexcept> #include <stdexcept>
...@@ -2408,6 +2410,9 @@ void smf_app::create_n2_sm_information(std::shared_ptr<itti_n11_create_sm_contex ...@@ -2408,6 +2410,9 @@ void smf_app::create_n2_sm_information(std::shared_ptr<itti_n11_create_sm_contex
make_NGAP_PduHandOverCommand("", ""); make_NGAP_PduHandOverCommand("", "");
make_NGAP_PduHandOverPreFailure("",""); make_NGAP_PduHandOverPreFailure("","");
make_NGAP_PduHandOver_Req_Ack("","");
//make_NGAP_PduSessionResourceReleaseCommand("", ""); //make_NGAP_PduSessionResourceReleaseCommand("", "");
//make_NGAP_pdu_session_resource_setup_request(); //make_NGAP_pdu_session_resource_setup_request();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment