Commit 0c9771a3 authored by aligungr's avatar aligungr

gNB RRC paging handling

parent 6df4d7ad
......@@ -74,7 +74,16 @@ void GnbRlsTask::handleDownlinkDelivery(int ueId, rls::EPduType pduType, OctetSt
resp.pduType = pduType;
resp.pdu = std::move(pdu);
resp.payload = std::move(payload);
sendRlsMessage(ueId, resp);
if (ueId != 0)
{
sendRlsMessage(ueId, resp);
}
else
{
for (auto &ue : m_ueCtx)
sendRlsMessage(ue.first, resp);
}
}
} // namespace nr::gnb
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