Commit 1139725c authored by aligungr's avatar aligungr

RLS improvements

parent c81d4a2f
//
// This file is a part of UERANSIM open source project.
// Copyright (c) 2021 ALİ GÜNGÖR.
//
// The software and all associated files are licensed under GPL-3.0
// and subject to the terms and conditions defined in LICENSE file.
//
#include "rls_base.hpp"
namespace rls
{
}
//
// This file is a part of UERANSIM open source project.
// Copyright (c) 2021 ALİ GÜNGÖR.
//
// The software and all associated files are licensed under GPL-3.0
// and subject to the terms and conditions defined in LICENSE file.
//
#include "rls_pdu.hpp"
namespace rls
{
enum class ERlfCause
{
};
}
\ No newline at end of file
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
#include <lib/app/cli_base.hpp> #include <lib/app/cli_base.hpp>
#include <lib/nas/timer.hpp> #include <lib/nas/timer.hpp>
#include <lib/rls/rls_pdu.hpp> #include <lib/rls/rls_base.hpp>
#include <lib/rrc/rrc.hpp> #include <lib/rrc/rrc.hpp>
#include <utils/network.hpp> #include <utils/network.hpp>
#include <utils/nts.hpp> #include <utils/nts.hpp>
...@@ -249,9 +249,10 @@ struct NwUeRlsToRls : NtsMessage ...@@ -249,9 +249,10 @@ struct NwUeRlsToRls : NtsMessage
RECEIVE_RLS_MESSAGE, RECEIVE_RLS_MESSAGE,
SIGNAL_CHANGED, SIGNAL_CHANGED,
UPLINK_DATA, UPLINK_DATA,
DOWNLINK_DATA,
UPLINK_RRC, UPLINK_RRC,
DOWNLINK_DATA,
DOWNLINK_RRC, DOWNLINK_RRC,
RADIO_LINK_FAILURE,
} present; } present;
// RECEIVE_RLS_MESSAGE // RECEIVE_RLS_MESSAGE
...@@ -282,6 +283,9 @@ struct NwUeRlsToRls : NtsMessage ...@@ -282,6 +283,9 @@ struct NwUeRlsToRls : NtsMessage
// DOWNLINK_RRC // DOWNLINK_RRC
uint32_t pduId{}; uint32_t pduId{};
// RADIO_LINK_FAILURE
rls::ERlfCause rlfCause{};
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