From 9c7ef6f11ec9afa774460d6e3ab40b21e76187f1 Mon Sep 17 00:00:00 2001 From: Carlo Galiotto Date: Tue, 23 Nov 2021 18:33:13 +0100 Subject: [PATCH] rrc-nr: send RRCReconfiguration after establish_rrc_bearer() Signed-off-by: Carlo Galiotto --- srsgnb/src/stack/rrc/rrc_nr.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/srsgnb/src/stack/rrc/rrc_nr.cc b/srsgnb/src/stack/rrc/rrc_nr.cc index f39a6596c..fff08d71f 100644 --- a/srsgnb/src/stack/rrc/rrc_nr.cc +++ b/srsgnb/src/stack/rrc/rrc_nr.cc @@ -610,6 +610,8 @@ int rrc_nr::establish_rrc_bearer(uint16_t rnti, uint16_t pdu_session_id, srsran: users[rnti]->establish_eps_bearer(pdu_session_id, nas_pdu, lcid); + // TODO: verify whether this is the best place where to call the RRCReconfig + users[rnti]->send_rrc_reconfiguration(); return SRSRAN_SUCCESS; }