Commit 9743bbc4 authored by KARIM's avatar KARIM

fix the build

parent f9865cd1
...@@ -98,7 +98,6 @@ class amf_event { ...@@ -98,7 +98,6 @@ class amf_event {
bs2::connection subscribe_ue_communication_failure( bs2::connection subscribe_ue_communication_failure(
const ue_communication_failure_sig_t::slot_type& sig); const ue_communication_failure_sig_t::slot_type& sig);
private:
ue_location_report_sig_t ue_location_report; // Signal for UE Location Report ue_location_report_sig_t ue_location_report; // Signal for UE Location Report
ue_reachability_status_sig_t ue_reachability_status_sig_t
ue_reachability_status; // Signal for UE Reachability Report ue_reachability_status; // Signal for UE Reachability Report
......
...@@ -3800,7 +3800,7 @@ void amf_n1::handle_ue_communication_failure_change( ...@@ -3800,7 +3800,7 @@ void amf_n1::handle_ue_communication_failure_change(
std::shared_ptr<itti_sbi_notify_subscribed_event> itti_msg = std::shared_ptr<itti_sbi_notify_subscribed_event> itti_msg =
std::make_shared<itti_sbi_notify_subscribed_event>( std::make_shared<itti_sbi_notify_subscribed_event>(
TASK_AMF_N1, TASK_AMF_N11); TASK_AMF_N1, TASK_AMF_SBI);
itti_msg->http_version = 1; itti_msg->http_version = 1;
...@@ -3834,7 +3834,7 @@ void amf_n1::handle_ue_communication_failure_change( ...@@ -3834,7 +3834,7 @@ void amf_n1::handle_ue_communication_failure_change(
int ret = itti_inst->send_msg(itti_msg); int ret = itti_inst->send_msg(itti_msg);
if (0 != ret) { if (0 != ret) {
Logger::amf_n1().error( Logger::amf_n1().error(
"Could not send ITTI message %s to task TASK_AMF_N11", "Could not send ITTI message %s to task TASK_AMF_SBI",
itti_msg->get_msg_name()); itti_msg->get_msg_name());
} }
} }
...@@ -3861,7 +3861,7 @@ void amf_n1::handle_ue_loss_of_connectivity_change( ...@@ -3861,7 +3861,7 @@ void amf_n1::handle_ue_loss_of_connectivity_change(
std::shared_ptr<itti_sbi_notify_subscribed_event> itti_msg = std::shared_ptr<itti_sbi_notify_subscribed_event> itti_msg =
std::make_shared<itti_sbi_notify_subscribed_event>( std::make_shared<itti_sbi_notify_subscribed_event>(
TASK_AMF_N1, TASK_AMF_N11); TASK_AMF_N1, TASK_AMF_SBI);
itti_msg->http_version = 1; itti_msg->http_version = 1;
...@@ -3900,7 +3900,7 @@ void amf_n1::handle_ue_loss_of_connectivity_change( ...@@ -3900,7 +3900,7 @@ void amf_n1::handle_ue_loss_of_connectivity_change(
int ret = itti_inst->send_msg(itti_msg); int ret = itti_inst->send_msg(itti_msg);
if (0 != ret) { if (0 != ret) {
Logger::amf_n1().error( Logger::amf_n1().error(
"Could not send ITTI message %s to task TASK_AMF_N11", "Could not send ITTI message %s to task TASK_AMF_SBI",
itti_msg->get_msg_name()); itti_msg->get_msg_name());
} }
} }
......
...@@ -837,6 +837,7 @@ class amf_n1 { ...@@ -837,6 +837,7 @@ class amf_n1 {
bs2::connection ee_ue_registration_state_connection; bs2::connection ee_ue_registration_state_connection;
bs2::connection ee_ue_connectivity_state_connection; bs2::connection ee_ue_connectivity_state_connection;
bs2::connection ee_ue_loss_of_connectivity_connection; bs2::connection ee_ue_loss_of_connectivity_connection;
bs2::connection ee_ue_communication_failure_connection;
private: private:
......
...@@ -1375,7 +1375,7 @@ void amf_n2::handle_itti_message(itti_ue_context_release_command& itti_msg) { ...@@ -1375,7 +1375,7 @@ void amf_n2::handle_itti_message(itti_ue_context_release_command& itti_msg) {
std::shared_ptr<itti_sbi_notify_subscribed_event> itti_msg_ev = std::shared_ptr<itti_sbi_notify_subscribed_event> itti_msg_ev =
std::make_shared<itti_sbi_notify_subscribed_event>( std::make_shared<itti_sbi_notify_subscribed_event>(
TASK_AMF_N2, TASK_AMF_N11); TASK_AMF_N2, TASK_AMF_SBI);
itti_msg_ev->http_version = 1; itti_msg_ev->http_version = 1;
...@@ -1416,7 +1416,7 @@ void amf_n2::handle_itti_message(itti_ue_context_release_command& itti_msg) { ...@@ -1416,7 +1416,7 @@ void amf_n2::handle_itti_message(itti_ue_context_release_command& itti_msg) {
int ret = itti_inst->send_msg(itti_msg_ev); int ret = itti_inst->send_msg(itti_msg_ev);
if (0 != ret) { if (0 != ret) {
Logger::amf_n2().error( Logger::amf_n2().error(
"Could not send ITTI message %s to task TASK_AMF_N11", "Could not send ITTI message %s to task TASK_AMF_SBI",
itti_msg_ev->get_msg_name()); itti_msg_ev->get_msg_name());
} }
} }
......
...@@ -591,6 +591,7 @@ void amf_sbi::handle_itti_message(itti_sbi_notify_subscribed_event& itti_msg) { ...@@ -591,6 +591,7 @@ void amf_sbi::handle_itti_message(itti_sbi_notify_subscribed_event& itti_msg) {
} }
if (r.amfUeNgapIdIsSet()) { if (r.amfUeNgapIdIsSet()) {
report["amfUeNgapId"] = r.getAmfUeNgapId(); report["amfUeNgapId"] = r.getAmfUeNgapId();
}
if (r.commFailureIsSet()) { if (r.commFailureIsSet()) {
report["commFailure"] = r.getCommFailure(); report["commFailure"] = r.getCommFailure();
} }
......
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