Commit 9bc00465 authored by Robert Schmidt's avatar Robert Schmidt

Merge remote-tracking branch 'origin/fix-context-setup-response' into integration_2023_w30

parents da17b17b 325dcf93
...@@ -223,7 +223,6 @@ typedef struct drb_s { ...@@ -223,7 +223,6 @@ typedef struct drb_s {
} drb_t; } drb_t;
typedef enum { typedef enum {
RRC_FIRST_RECONF,
RRC_SETUP, RRC_SETUP,
RRC_SETUP_FOR_REESTABLISHMENT, RRC_SETUP_FOR_REESTABLISHMENT,
RRC_REESTABLISH, RRC_REESTABLISH,
......
...@@ -1951,11 +1951,8 @@ static void handle_rrcReconfigurationComplete(const protocol_ctxt_t *const ctxt_ ...@@ -1951,11 +1951,8 @@ static void handle_rrcReconfigurationComplete(const protocol_ctxt_t *const ctxt_
case RRC_PDUSESSION_MODIFY: case RRC_PDUSESSION_MODIFY:
rrc_gNB_send_NGAP_PDUSESSION_MODIFY_RESP(ctxt_pP, ue_context_p, xid); rrc_gNB_send_NGAP_PDUSESSION_MODIFY_RESP(ctxt_pP, ue_context_p, xid);
break; break;
case RRC_FIRST_RECONF:
rrc_gNB_send_NGAP_INITIAL_CONTEXT_SETUP_RESP(ctxt_pP, ue_context_p);
break;
case RRC_DEFAULT_RECONF: case RRC_DEFAULT_RECONF:
/* nothing to do */ rrc_gNB_send_NGAP_INITIAL_CONTEXT_SETUP_RESP(ctxt_pP, ue_context_p);
break; break;
default: default:
LOG_E(RRC, "Received unexpected xid: %d\n", xid); LOG_E(RRC, "Received unexpected xid: %d\n", xid);
......
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