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
zzha zzha
OpenXG-RAN
Commits
352362ac
Commit
352362ac
authored
Oct 05, 2022
by
Angelo Athanassopoulos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PSEA - Capture - Authorized QoS Rules, but Ommit the Packet Filters
parent
fbe01042
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
openair3/NAS/COMMON/ESM/MSG/PduSessionEstablishmentAccept.c
openair3/NAS/COMMON/ESM/MSG/PduSessionEstablishmentAccept.c
+27
-0
No files found.
openair3/NAS/COMMON/ESM/MSG/PduSessionEstablishmentAccept.c
View file @
352362ac
...
...
@@ -49,6 +49,33 @@ void capture_pdu_session_establishment_accept(uint8_t *buffer, uint32_t msg_leng
psea_msg
.
ssc_mode
=
(
*
(
buffer
+
(
offset
++
))
&
0xf0
)
>>
4
;
psea_msg
.
qos_rules
.
length
=
htons
(
*
(
uint16_t
*
)(
buffer
+
offset
));
offset
+=
sizeof
(
psea_msg
.
qos_rules
.
length
);
/* Supports the capture of only one QoS Rule,
it should be changed for multiple QoS Rules */
qos_rule_t
qos_rule
;
qos_rule
.
id
=
*
(
buffer
+
(
offset
++
));
qos_rule
.
length
=
htons
(
*
(
uint16_t
*
)(
buffer
+
offset
));
offset
+=
sizeof
(
qos_rule
.
length
);
qos_rule
.
oc
=
(
*
(
buffer
+
offset
)
&
0xE0
)
>>
5
;
qos_rule
.
dqr
=
(
*
(
buffer
+
offset
)
&
0x10
)
>>
4
;
qos_rule
.
nb_pf
=
*
(
buffer
+
(
offset
++
))
&
0x0F
;
if
(
qos_rule
.
nb_pf
)
{
packet_filter_t
pf
;
if
(
qos_rule
.
oc
==
ROC_CREATE_NEW_QOS_RULE
||
ROC_MODIFY_QOS_RULE_ADD_PF
||
ROC_MODIFY_QOS_RULE_REPLACE_PF
)
{
pf
.
pf_type
.
type_1
.
pf_dir
=
(
*
(
buffer
+
offset
)
&
0x30
)
>>
4
;
pf
.
pf_type
.
type_1
.
pf_id
=
*
(
buffer
+
offset
++
)
&
0x0F
;
pf
.
pf_type
.
type_1
.
length
=
*
(
buffer
+
offset
++
);
offset
+=
(
qos_rule
.
nb_pf
*
pf
.
pf_type
.
type_1
.
length
);
/* Ommit the Packet filter List */
}
else
if
(
qos_rule
.
oc
==
ROC_MODIFY_QOS_RULE_DELETE_PF
)
{
offset
+=
qos_rule
.
nb_pf
;
}
}
qos_rule
.
prcd
=
*
(
buffer
+
offset
++
);
qos_rule
.
qfi
=
*
(
buffer
+
offset
++
);
return
;
}
\ No newline at end of file
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