Make sure SCTP notifications are not handled. Improve logging of SCTP ASSOC CHANGE

This commit is contained in:
Pedro Alvarez 2021-10-27 18:18:49 +01:00 committed by Ismael Gomez
parent 5f837c0c67
commit 5735118ea0
1 changed files with 7 additions and 1 deletions

View File

@ -564,6 +564,9 @@ bool s1ap::handle_mme_rx_msg(srsran::unique_byte_buffer_t pdu,
logger.info("SCTP peer addres unreachable. Association: %d", sri.sinfo_assoc_id);
srsran::console("SCTP peer address unreachable. Association: %d\n", sri.sinfo_assoc_id);
restart_s1 = true;
} else if (notification->sn_header.sn_type == SCTP_ASSOC_CHANGE) {
logger.info("SCTP association changed. Association: %d", sri.sinfo_assoc_id);
srsran::console("SCTP association changed. Association: %d\n", sri.sinfo_assoc_id);
}
if (restart_s1) {
logger.info("Restarting S1 connection");
@ -594,7 +597,10 @@ bool s1ap::handle_mme_rx_msg(srsran::unique_byte_buffer_t pdu,
return false;
}
handle_s1ap_rx_pdu(pdu.get());
if ((flags & MSG_NOTIFICATION) == 0 && pdu->N_bytes != 0) {
handle_s1ap_rx_pdu(pdu.get());
}
return true;
}