Commit f267bee9 authored by aligungr's avatar aligungr

L3 RRC/NAS developments

parent 3cccea9f
......@@ -16,6 +16,8 @@ namespace nr::ue
void NasMm::receiveAuthenticationRequest(const nas::AuthenticationRequest &msg)
{
m_logger->debug("Authentication Request received.");
if (!m_usim->isValid())
{
m_logger->warn("Authentication request is ignored. USIM is invalid");
......
......@@ -126,6 +126,7 @@ void UeRrcTask::sendRrcMessage(ASN_RRC_UL_DCCH_Message *msg)
}
auto *nw = new NwUeRrcToRls(NwUeRrcToRls::RRC_PDU_DELIVERY);
nw->cellId = m_base->shCtx.currentCell.get<int>([](auto &value) { return value.cellId; });
nw->channel = rrc::RrcChannel::UL_DCCH;
nw->pdu = std::move(pdu);
m_base->rlsTask->push(nw);
......
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