Commit 6308b923 authored by aligungr's avatar aligungr

L3 RRC/NAS developments

parent 6e63a210
......@@ -158,6 +158,8 @@ static OrderedMap<std::string, CmdEntry> g_ueCmdEntries = {
{"info", {"Show some information about the UE", "", DefaultDesc, false}},
{"status", {"Show some status information about the UE", "", DefaultDesc, false}},
{"timers", {"Dump current status of the timers in the UE", "", DefaultDesc, false}},
{"rls-state", {"Show status information about RLS", "", DefaultDesc, false}},
{"coverage", {"Dump available cells and PLMNs in the coverage", "", DefaultDesc, false}},
{"ps-establish",
{"Trigger a PDU session establishment procedure", "<session-type> [options]", DescForPsEstablish, true}},
{"ps-list", {"List all PDU sessions", "", DefaultDesc, false}},
......@@ -321,6 +323,14 @@ static std::unique_ptr<UeCliCommand> UeCliParseImpl(const std::string &subCmd, c
{
return std::make_unique<UeCliCommand>(UeCliCommand::PS_LIST);
}
else if (subCmd == "rls-info")
{
return std::make_unique<UeCliCommand>(UeCliCommand::RLS_INFO);
}
else if (subCmd == "coverage")
{
return std::make_unique<UeCliCommand>(UeCliCommand::COVERAGE);
}
return nullptr;
}
......
......@@ -54,6 +54,8 @@ struct UeCliCommand
PS_RELEASE_ALL,
PS_LIST,
DE_REGISTER,
RLS_INFO,
COVERAGE,
} present;
// DE_REGISTER
......
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