Commit c16b6cac authored by aligungr's avatar aligungr

RLS improvements

parent 8dda13c7
...@@ -248,15 +248,37 @@ struct NwUeRlsToRls : NtsMessage ...@@ -248,15 +248,37 @@ struct NwUeRlsToRls : NtsMessage
{ {
RECEIVE_RLS_MESSAGE, RECEIVE_RLS_MESSAGE,
SIGNAL_CHANGED, SIGNAL_CHANGED,
UPLINK_DATA,
DOWNLINK_DATA,
UPLINK_RRC,
DOWNLINK_RRC,
} present; } present;
// RECEIVE_RLS_MESSAGE // RECEIVE_RLS_MESSAGE
// UPLINK_RRC
// DOWNLINK_RRC
int cellId{}; int cellId{};
// RECEIVE_RLS_MESSAGE
std::unique_ptr<rls::RlsMessage> msg{}; std::unique_ptr<rls::RlsMessage> msg{};
// SIGNAL_CHANGED // SIGNAL_CHANGED
int dbm{}; int dbm{};
// UPLINK_DATA
// DOWNLINK_DATA
int psi{};
// UPLINK_DATA
// DOWNLINK_DATA
// UPLINK_RRC
// DOWNLINK_RRC
OctetString data;
// UPLINK_RRC
// DOWNLINK_RRC
rrc::RrcChannel rrcChannel{};
explicit NwUeRlsToRls(PR present) : NtsMessage(NtsMessageType::UE_RLS_TO_RLS), present(present) explicit NwUeRlsToRls(PR present) : NtsMessage(NtsMessageType::UE_RLS_TO_RLS), present(present)
{ {
} }
......
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