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
da84a704
Commit
da84a704
authored
Sep 21, 2024
by
V. Tuan Ngo
Committed by
Robert Schmidt
Oct 21, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allocate and add sD to DRB NSSAI in case sD != 0xffffff
parent
e15fa14c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
openair2/F1AP/f1ap_cu_ue_context_management.c
openair2/F1AP/f1ap_cu_ue_context_management.c
+6
-2
No files found.
openair2/F1AP/f1ap_cu_ue_context_management.c
View file @
da84a704
...
...
@@ -108,8 +108,12 @@ static void f1ap_write_drb_nssai(const nssai_t *nssai, F1AP_SNSSAI_t *asn1_nssai
OCTET_STRING_fromBuf
(
&
asn1_nssai
->
sST
,
(
char
*
)
&
nssai
->
sst
,
1
);
/* OPTIONAL */
if
(
nssai
->
sd
!=
0xffffff
)
OCTET_STRING_fromBuf
(
asn1_nssai
->
sD
,
(
char
*
)
&
nssai
->
sd
,
3
);
if
(
nssai
->
sd
!=
0xffffff
)
{
char
sd_buffer
[
3
];
INT24_TO_BUFFER
(
nssai
->
sd
,
sd_buffer
);
asn1cCalloc
(
asn1_nssai
->
sD
,
sD
);
OCTET_STRING_fromBuf
(
sD
,
sd_buffer
,
3
);
}
}
static
void
f1ap_write_flows_mapped
(
const
f1ap_flows_mapped_to_drb_t
*
flows_mapped
,
F1AP_Flows_Mapped_To_DRB_List_t
*
asn1_flows_mapped
,
int
n
)
...
...
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