Commit 1eb4f857 authored by Robert Schmidt's avatar Robert Schmidt

UE Capabilities: we request during RRC Connection Setup, so no PDU sessions

parent ca30b9ee
...@@ -2284,11 +2284,12 @@ rrc_gNB_decode_dcch( ...@@ -2284,11 +2284,12 @@ rrc_gNB_decode_dcch(
ul_dcch_msg); ul_dcch_msg);
} }
if (UE->established_pdu_sessions_flag == 1) { // we send the UE capabilities request before RRC connection is complete,
rrc_gNB_generate_dedicatedRRCReconfiguration(ctxt_pP, ue_context_p, NULL); // so we cannot have a PDU session yet
} else { AssertFatal(UE->established_pdu_sessions_flag == 0, "logic bug: received capabilities while PDU session established\n");
rrc_gNB_generate_defaultRRCReconfiguration(ctxt_pP, ue_context_p); // TODO: send UE context modification response with UE capabilities to
} // allow DU configure CellGroupConfig
rrc_gNB_generate_defaultRRCReconfiguration(ctxt_pP, ue_context_p);
break; break;
......
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