We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebbe194 commit 252e7faCopy full SHA for 252e7fa
lib/ngap/ngap_impl.cpp
@@ -160,6 +160,11 @@ void ngap_impl::handle_ul_nas_transport_message(const cu_cp_ul_nas_transport& ms
160
161
ngap_ue_context& ue_ctxt = ue_ctxt_list[msg.ue_index];
162
163
+ if (ue_ctxt.release_scheduled) {
164
+ ue_ctxt.logger.log_info("Dropping UlNasTransportMessage. UE is already scheduled for release");
165
+ return;
166
+ }
167
+
168
ngap_message ngap_msg = {};
169
ngap_msg.pdu.set_init_msg();
170
ngap_msg.pdu.init_msg().load_info_obj(ASN1_NGAP_ID_UL_NAS_TRANSPORT);
0 commit comments