Commit 165fcb56 authored by aligungr's avatar aligungr

RLS developments

parent d7c05809
......@@ -179,6 +179,7 @@ void RlsControlTask::handleDownlinkRrcDelivery(int ueId, uint32_t pduId, rrc::Rr
}
m_pduMap[pduId].endPointId = ueId;
m_pduMap[pduId].id = pduId;
m_pduMap[pduId].pdu = data.copy();
m_pduMap[pduId].rrcChannel = channel;
m_pduMap[pduId].sentTime = utils::CurrentTimeMillis();
......
......@@ -15,6 +15,7 @@ namespace rls
struct PduInfo
{
uint32_t id{};
OctetString pdu;
rrc::RrcChannel rrcChannel{};
int64_t sentTime{};
......
......@@ -179,6 +179,7 @@ void RlsControlTask::handleUplinkRrcDelivery(int cellId, uint32_t pduId, rrc::Rr
}
m_pduMap[pduId].endPointId = cellId;
m_pduMap[pduId].id = pduId;
m_pduMap[pduId].pdu = data.copy();
m_pduMap[pduId].rrcChannel = channel;
m_pduMap[pduId].sentTime = utils::CurrentTimeMillis();
......
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