Commit 03e20b30 authored by Manu Agrawal's avatar Manu Agrawal Committed by jperaldi

Fix for PDCP Count unbound issue

parent aaabdb84
......@@ -554,6 +554,10 @@ rb_found:
if (is_srb == 0)
return;
/* Do not trigger RLF in case of System Simulator */
if (RC.ss.mode > SS_ENB)
return;
is_enb = rlc_manager_get_enb_flag(rlc_ue_manager);
if (!is_enb)
return;
......
......@@ -7327,6 +7327,7 @@ char openair_rrc_eNB_configuration(
if(configuration->ActiveParamPresent == true)
{
LOG_A(RRC, "TTCN ActiveParam configuration RlcPduCCCH_Present=%d RlcPduCCCH_Size=%d\n", configuration->RlcPduCCCH_Present, configuration->RlcPduCCCH_Size);
RRCConnSetup_PDU_Present = configuration->RlcPduCCCH_Present;
LOG_D(RRC,"Update config from TTCN RRCConnSetup_PDU_Present %d \n",RRCConnSetup_PDU_Present);
if(RRCConnSetup_PDU_Present == true)
......@@ -7334,6 +7335,7 @@ char openair_rrc_eNB_configuration(
RRCMsgOnSRB0_PDUSize = configuration->RlcPduCCCH_Size;
memcpy(RRCMsgOnSRB0_PDU,configuration->RlcPduCCCH,RRCMsgOnSRB0_PDUSize);
}
LOG_A(RRC,"Update config from TTCN RRCConnSetup_PDU_Present=%d RRCMsgOnSRB0_PDUSize=%d\n",RRCConnSetup_PDU_Present, RRCMsgOnSRB0_PDUSize);
}
/*
RC.rrc[ctxt.module_id]->mcc= rrc_configuration_req->mcc;
......
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