Commit 9df51e4b authored by aligungr's avatar aligungr

RLS developments

parent e1e36f76
......@@ -176,6 +176,7 @@ void RlsControlTask::handleDownlinkRrcDelivery(int ueId, uint32_t pduId, rrc::Rr
return;
}
m_pduMap[pduId].endPointId = ueId;
m_pduMap[pduId].pdu = data.copy();
m_pduMap[pduId].rrcChannel = channel;
m_pduMap[pduId].sentTime = utils::CurrentTimeMillis();
......
......@@ -18,6 +18,7 @@ struct PduInfo
OctetString pdu;
rrc::RrcChannel rrcChannel{};
int64_t sentTime{};
int endPointId{};
};
enum class ERlfCause
......
......@@ -178,6 +178,7 @@ void RlsControlTask::handleUplinkRrcDelivery(int cellId, uint32_t pduId, rrc::Rr
return;
}
m_pduMap[pduId].endPointId = cellId;
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