fix printf in s1ap

This commit is contained in:
Andre Puschmann 2018-03-26 13:13:47 +02:00
parent 4ad02545b3
commit 902feeda28
1 changed files with 4 additions and 4 deletions

View File

@ -118,12 +118,12 @@ s1ap_nas_transport::handle_initial_ue_message(LIBLTE_S1AP_MESSAGE_INITIALUEMESSA
}
else if(msg_type == LIBLTE_MME_SECURITY_HDR_TYPE_SERVICE_REQUEST)
{
m_s1ap_log->info("Received Service Request \n");
m_s1ap_log->console("Received Service Request \n");
m_s1ap_log->info("Received Service Request\n");
m_s1ap_log->console("Received Service Request\n");
liblte_mme_unpack_service_request_msg((LIBLTE_BYTE_MSG_STRUCT*) nas_msg, &service_req);
m_s1ap_log->info("Service Request not implemented. Sending Service Reject.");
m_s1ap_log->console("Service Request not implemented. Sending Service Reject.");
m_s1ap_log->info("Service Request not implemented. Sending Service Reject.\n");
m_s1ap_log->console("Service Request not implemented. Sending Service Reject.\n");
/* Force UE to re-attach */
pack_service_reject(reply_buffer, LIBLTE_MME_EMM_CAUSE_IMPLICITLY_DETACHED, enb_ue_s1ap_id);
*reply_flag = true;