Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
UERANSIM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
UERANSIM
Commits
6308b923
Commit
6308b923
authored
May 28, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
L3 RRC/NAS developments
parent
6e63a210
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
src/lib/app/cli_cmd.cpp
src/lib/app/cli_cmd.cpp
+10
-0
src/lib/app/cli_cmd.hpp
src/lib/app/cli_cmd.hpp
+2
-0
No files found.
src/lib/app/cli_cmd.cpp
View file @
6308b923
...
...
@@ -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
;
}
...
...
src/lib/app/cli_cmd.hpp
View file @
6308b923
...
...
@@ -54,6 +54,8 @@ struct UeCliCommand
PS_RELEASE_ALL
,
PS_LIST
,
DE_REGISTER
,
RLS_INFO
,
COVERAGE
,
}
present
;
// DE_REGISTER
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment