src/lte/model/lte-ue-rrc.cc
changeset 9703 681f35b212ff
parent 9623 0be7b61853e3
child 9870 6543f3876ff5
child 10063 6b30859ebd37
equal deleted inserted replaced
9702:552d0701ee4e 9703:681f35b212ff
   340   m_useRlcSm = val;
   340   m_useRlcSm = val;
   341 }
   341 }
   342 
   342 
   343 
   343 
   344 void
   344 void
   345 LteUeRrc::DoStart (void)
   345 LteUeRrc::DoInitialize (void)
   346 {
   346 {
   347   NS_LOG_FUNCTION (this);
   347   NS_LOG_FUNCTION (this);
   348 
   348 
   349   // setup the UE side of SRB0
   349   // setup the UE side of SRB0
   350   uint8_t lcid = 0;
   350   uint8_t lcid = 0;
   873           lcConfig.logicalChannelGroup = dtamIt->logicalChannelConfig.logicalChannelGroup;      
   873           lcConfig.logicalChannelGroup = dtamIt->logicalChannelConfig.logicalChannelGroup;      
   874 
   874 
   875           m_cmacSapProvider->AddLc (dtamIt->logicalChannelIdentity,
   875           m_cmacSapProvider->AddLc (dtamIt->logicalChannelIdentity,
   876                                     lcConfig,
   876                                     lcConfig,
   877                                     rlc->GetLteMacSapUser ());
   877                                     rlc->GetLteMacSapUser ());
   878           rlc->Start ();
   878           rlc->Initialize ();
   879         }
   879         }
   880       else
   880       else
   881         {
   881         {
   882           NS_LOG_INFO ("request to modify existing DRBID");
   882           NS_LOG_INFO ("request to modify existing DRBID");
   883           Ptr<LteDataRadioBearerInfo> drbInfo = drbMapIt->second;
   883           Ptr<LteDataRadioBearerInfo> drbInfo = drbMapIt->second;