Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Merge requests
!190
develop_integration_w20 into develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
develop_integration_w20 into develop
develop_integration_w20
into
develop
Overview
0
Commits
24
Pipelines
0
Changes
3
Merged
Cédric Roux
requested to merge
develop_integration_w20
into
develop
7 years ago
Overview
0
Commits
24
Pipelines
0
Changes
3
Expand
Summary of changes:
bug fixes
UE TDD fixes
PDCCH size computation (at phy level, still to be corrected at mac level)
DAI increment
fix run_enb_ue_virt_noS1 and run_enb_ue_virt_s1 to use Rel14 and have --xforms to work
compilation warning removals
better oaisim logging (print UE security keys, print version (git commit ID) at runtime, print working directory)
0
0
Merge request reports
Viewing commit
65c845ea
Prev
Next
Show latest version
3 files
+
70
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
65c845ea
Merge remote-tracking branch 'origin/oaisim-logging-w20' into develop_integration_w20
· 65c845ea
Cédric Roux
authored
7 years ago
openair3/NAS/TOOLS/display.c
+
8
−
0
Options
@@ -248,6 +248,14 @@ void display_usim_data(const char *filename) {
memcpy
(
key
,
data
.
keys
.
ik
,
USIM_IK_SIZE
);
printf
(
"
\t
IK
\t
:
\"
%s
\"\n
"
,
key
);
printf
(
"
\n\t
usim_api_k:"
);
for
(
int
i
=
0
;
i
<
16
;
i
++
)
printf
(
" %2.2x"
,
data
.
keys
.
usim_api_k
[
i
]);
printf
(
"
\n\t
opc :"
);
for
(
int
i
=
0
;
i
<
16
;
i
++
)
printf
(
" %2.2x"
,
data
.
keys
.
opc
[
i
]);
printf
(
"
\n\n
"
);
printf
(
"EPS NAS security context:
\n
"
);
printf
(
"
\t
KSIasme
\t
: 0x%.2x
\n
"
,
data
.
securityctx
.
KSIasme
.
value
[
0
]);
char
kasme
[
USIM_K_ASME_SIZE
+
1
];
Loading