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
spbro
OpenXG-RAN
Commits
67fb98a1
Commit
67fb98a1
authored
Apr 22, 2024
by
Jaroslava Fiedlerova
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/fix-5g-s-tmsi-hardcode-nr-ue' into integration_2024_w16
parents
ea192180
7a9b3485
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
openair2/RRC/NR/MESSAGES/asn1_msg.c
openair2/RRC/NR/MESSAGES/asn1_msg.c
+1
-13
No files found.
openair2/RRC/NR/MESSAGES/asn1_msg.c
View file @
67fb98a1
...
...
@@ -893,19 +893,7 @@ uint8_t do_RRCSetupComplete(uint8_t *buffer,
NR_RRCSetupComplete_IEs_t
*
ies
=
RrcSetupComplete
->
criticalExtensions
.
choice
.
rrcSetupComplete
;
ies
->
selectedPLMN_Identity
=
sel_plmn_id
;
ies
->
registeredAMF
=
NULL
;
ies
->
ng_5G_S_TMSI_Value
=
CALLOC
(
1
,
sizeof
(
struct
NR_RRCSetupComplete_IEs__ng_5G_S_TMSI_Value
));
ies
->
ng_5G_S_TMSI_Value
->
present
=
NR_RRCSetupComplete_IEs__ng_5G_S_TMSI_Value_PR_ng_5G_S_TMSI
;
NR_NG_5G_S_TMSI_t
*
stmsi
=
&
ies
->
ng_5G_S_TMSI_Value
->
choice
.
ng_5G_S_TMSI
;
stmsi
->
size
=
6
;
stmsi
->
buf
=
calloc
(
stmsi
->
size
,
sizeof
(
*
stmsi
->
buf
));
AssertFatal
(
stmsi
->
buf
!=
NULL
,
"out of memory
\n
"
);
stmsi
->
buf
[
0
]
=
0x12
;
stmsi
->
buf
[
1
]
=
0x34
;
stmsi
->
buf
[
2
]
=
0x56
;
stmsi
->
buf
[
3
]
=
0x78
;
stmsi
->
buf
[
4
]
=
0x9A
;
stmsi
->
buf
[
5
]
=
0xBC
;
ies
->
ng_5G_S_TMSI_Value
=
NULL
;
memset
(
&
ies
->
dedicatedNAS_Message
,
0
,
sizeof
(
OCTET_STRING_t
));
OCTET_STRING_fromBuf
(
&
ies
->
dedicatedNAS_Message
,
dedicatedInfoNAS
,
dedicatedInfoNASLength
);
...
...
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