Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
Michael Black
OpenXG-RAN
Commits
0b7da436
Commit
0b7da436
authored
Mar 18, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call correct RRC functions in CI telnet module
parent
563421b4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
common/utils/telnetsrv/telnetsrv_ci.c
common/utils/telnetsrv/telnetsrv_ci.c
+3
-3
No files found.
common/utils/telnetsrv/telnetsrv_ci.c
View file @
0b7da436
...
...
@@ -49,7 +49,7 @@ static int get_single_ue_rnti(void)
return
-
1
;
// verify it exists in RRC as well
rrc_gNB_ue_context_t
*
rrcue
=
rrc_gNB_get_ue_context
(
RC
.
nrrrc
[
0
],
ue
->
rnti
);
rrc_gNB_ue_context_t
*
rrcue
=
rrc_gNB_get_ue_context
_by_rnti
(
RC
.
nrrrc
[
0
],
ue
->
rnti
);
if
(
!
rrcue
)
return
-
1
;
...
...
@@ -82,7 +82,7 @@ int get_reestab_count(char *buf, int debug, telnet_printfunc_t prnt)
ERROR_MSG_RET
(
"RNTI needs to be [1,0xfffe]
\n
"
);
}
rrc_gNB_ue_context_t
*
ue
=
rrc_gNB_get_ue_context
(
RC
.
nrrrc
[
0
],
rnti
);
rrc_gNB_ue_context_t
*
ue
=
rrc_gNB_get_ue_context
_by_rnti
(
RC
.
nrrrc
[
0
],
rnti
);
if
(
!
ue
)
ERROR_MSG_RET
(
"could not find UE with RNTI %04x
\n
"
,
rnti
);
...
...
@@ -107,7 +107,7 @@ int trigger_reestab(char *buf, int debug, telnet_printfunc_t prnt)
}
// verify it exists in RRC as well
rrc_gNB_ue_context_t
*
rrcue
=
rrc_gNB_get_ue_context
(
RC
.
nrrrc
[
0
],
rnti
);
rrc_gNB_ue_context_t
*
rrcue
=
rrc_gNB_get_ue_context
_by_rnti
(
RC
.
nrrrc
[
0
],
rnti
);
if
(
!
rrcue
)
ERROR_MSG_RET
(
"could not find UE with RNTI %04x
\n
"
,
rnti
);
...
...
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