handover - avoid halting ho preparation just due to the presence of a handover restriction list or handover request extension field

master
Francisco 4 years ago committed by Francisco Paisana
parent 3c1a97f450
commit 1b47bee4c0

@ -881,9 +881,12 @@ bool s1ap::handle_handover_request(const asn1::s1ap::ho_request_s& msg)
} }
}); });
if (msg.ext or msg.protocol_ies.ho_restrict_list_present or if (msg.ext or msg.protocol_ies.ho_restrict_list_present) {
msg.protocol_ies.handov_type.value.value != handov_type_opts::intralte) { logger.warning("Not handling S1AP Handover Request extensions or Handover Restriction List");
logger.error("Not handling S1AP non-intra LTE handovers and extensions"); }
if (msg.protocol_ies.handov_type.value.value != handov_type_opts::intralte) {
logger.error("Not handling S1AP non-intra LTE handovers");
return false; return false;
} }

Loading…
Cancel
Save