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
lizhongxiao
OpenXG-RAN
Commits
29bc4101
Commit
29bc4101
authored
Feb 22, 2024
by
Sakthivel Velumani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NGAP: Fix byte order of NSSAI SD
parent
c599e172
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
openair3/NGAP/ngap_gNB_handlers.c
openair3/NGAP/ngap_gNB_handlers.c
+3
-5
No files found.
openair3/NGAP/ngap_gNB_handlers.c
View file @
29bc4101
...
...
@@ -794,7 +794,8 @@ static int ngap_gNB_handle_initial_context_request(sctp_assoc_t assoc_id, uint32
OCTET_STRING_TO_INT8
(
&
allow_nssai_item_p
->
s_NSSAI
.
sST
,
msg
->
allowed_nssai
[
i
].
sst
);
if
(
allow_nssai_item_p
->
s_NSSAI
.
sD
!=
NULL
)
{
memcpy
(
&
msg
->
allowed_nssai
[
i
].
sd
,
allow_nssai_item_p
->
s_NSSAI
.
sD
,
3
);
msg
->
allowed_nssai
[
i
].
sd
=
0
;
BUFFER_TO_INT24
((
uint8_t
*
)
allow_nssai_item_p
->
s_NSSAI
.
sD
->
buf
,
msg
->
allowed_nssai
[
i
].
sd
);
}
else
{
msg
->
allowed_nssai
[
i
].
sd
=
0xffffff
;
}
...
...
@@ -974,10 +975,7 @@ static int ngap_gNB_handle_pdusession_setup_request(sctp_assoc_t assoc_id, uint3
// S-NSSAI
OCTET_STRING_TO_INT8
(
&
item_p
->
s_NSSAI
.
sST
,
msg
->
pdusession_setup_params
[
i
].
nssai
.
sst
);
if
(
item_p
->
s_NSSAI
.
sD
!=
NULL
)
{
uint8_t
*
sd_p
=
(
uint8_t
*
)
&
msg
->
pdusession_setup_params
[
i
].
nssai
.
sd
;
sd_p
[
0
]
=
item_p
->
s_NSSAI
.
sD
->
buf
[
0
];
sd_p
[
1
]
=
item_p
->
s_NSSAI
.
sD
->
buf
[
1
];
sd_p
[
2
]
=
item_p
->
s_NSSAI
.
sD
->
buf
[
2
];
BUFFER_TO_INT24
((
uint8_t
*
)
item_p
->
s_NSSAI
.
sD
->
buf
,
msg
->
pdusession_setup_params
[
i
].
nssai
.
sd
);
}
else
{
msg
->
pdusession_setup_params
[
i
].
nssai
.
sd
=
0xffffff
;
}
...
...
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