Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
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
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-SMF
Commits
22246163
Commit
22246163
authored
Dec 02, 2022
by
Tien Thinh NGUYEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove hardcoded value for QFI/5QI
parent
e5fe7ac6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
src/smf_app/smf_app.cpp
src/smf_app/smf_app.cpp
+2
-2
src/smf_app/smf_context.cpp
src/smf_app/smf_context.cpp
+1
-1
src/smf_app/smf_n2.cpp
src/smf_app/smf_n2.cpp
+1
-1
No files found.
src/smf_app/smf_app.cpp
View file @
22246163
...
...
@@ -2032,8 +2032,8 @@ bool smf_app::get_session_management_subscription_data(
dnn_configuration
->
_5g_qos_profile
.
arp
.
preempt_vuln
=
"NOT_PREEMPTABLE"
;
dnn_configuration
->
_5g_qos_profile
.
priority_level
=
1
;
// Session_ambr
dnn_configuration
->
session_ambr
.
uplink
=
"100Mbps"
;
dnn_configuration
->
session_ambr
.
downlink
=
"100Mbps"
;
dnn_configuration
->
session_ambr
.
uplink
=
"100
0
Mbps"
;
dnn_configuration
->
session_ambr
.
downlink
=
"100
0
Mbps"
;
subscription
->
insert_dnn_configuration
(
dnn
,
dnn_configuration
);
return
true
;
}
...
...
src/smf_app/smf_context.cpp
View file @
22246163
...
...
@@ -1180,7 +1180,7 @@ void smf_context::get_default_qos_flow_description(
(
ParametersList
*
)
calloc
(
3
,
sizeof
(
ParametersList
));
qos_flow_description
.
parameterslist
[
0
].
parameteridentifier
=
PARAMETER_IDENTIFIER_5QI
;
qos_flow_description
.
parameterslist
[
0
].
parametercontents
.
_5qi
=
DEFAULT_5QI
;
qos_flow_description
.
parameterslist
[
0
].
parametercontents
.
_5qi
=
qfi
.
qfi
;
/*
qos_flow_description.parameterslist[1].parameteridentifier =
PARAMETER_IDENTIFIER_GFBR_UPLINK;
...
...
src/smf_app/smf_n2.cpp
View file @
22246163
...
...
@@ -231,7 +231,7 @@ bool smf_n2::create_n2_pdu_session_resource_setup_request_transfer(
.
choice
.
nonDynamic5QI
=
(
Ngap_NonDynamic5QIDescriptor_t
*
)
(
calloc
(
1
,
sizeof
(
Ngap_NonDynamic5QIDescriptor_t
)));
ngap_QosFlowSetupRequestItem
->
qosFlowLevelQosParameters
.
qosCharacteristics
.
choice
.
nonDynamic5QI
->
fiveQI
=
(
uint8_t
)
DEFAULT_5QI
;
.
choice
.
nonDynamic5QI
->
fiveQI
=
(
uint8_t
)
qos_flow
.
qfi
.
qfi
;
ngap_QosFlowSetupRequestItem
->
qosFlowLevelQosParameters
.
allocationAndRetentionPriority
.
priorityLevelARP
=
qos_flow
.
qos_profile
.
arp
.
priority_level
;
...
...
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