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
1
Merge Requests
1
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-RAN
Commits
4f613ab2
Commit
4f613ab2
authored
Feb 04, 2025
by
Guido Casati
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove incomplete activityNotificationLevel handling
parent
b862963a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
15 deletions
+0
-15
openair2/COMMON/e1ap_messages_types.h
openair2/COMMON/e1ap_messages_types.h
+0
-7
openair2/E1AP/lib/e1ap_bearer_context_management.c
openair2/E1AP/lib/e1ap_bearer_context_management.c
+0
-7
openair2/E1AP/tests/e1ap_lib_test.c
openair2/E1AP/tests/e1ap_lib_test.c
+0
-1
No files found.
openair2/COMMON/e1ap_messages_types.h
View file @
4f613ab2
...
...
@@ -138,12 +138,6 @@ typedef enum BEARER_CONTEXT_STATUS_e {
BEARER_RESUME
,
}
BEARER_CONTEXT_STATUS_t
;
typedef
enum
activity_notification_level_e
{
ANL_DRB
=
0
,
ANL_PDU_SESSION
,
ANL_UE
,
}
activity_notification_level_t
;
typedef
enum
cell_group_id_e
{
MCG
=
0
,
SCG
,
...
...
@@ -413,7 +407,6 @@ typedef struct e1ap_bearer_setup_req_s {
long
ueDlAggMaxBitRate
;
PLMN_ID_t
servingPLMNid
;
BEARER_CONTEXT_STATUS_t
bearerContextStatus
;
activity_notification_level_t
activityNotificationLevel
;
int
numPDUSessions
;
pdu_session_to_setup_t
pduSession
[
E1AP_MAX_NUM_PDU_SESSIONS
];
int
numPDUSessionsMod
;
...
...
openair2/E1AP/lib/e1ap_bearer_context_management.c
View file @
4f613ab2
...
...
@@ -544,12 +544,6 @@ bool decode_E1_bearer_context_setup_request(const E1AP_E1AP_PDU_t *pdu, e1ap_bea
out
->
servingPLMNid
.
mnc_digit_length
);
break
;
case
E1AP_ProtocolIE_ID_id_ActivityNotificationLevel
:
_E1_EQ_CHECK_INT
(
ie
->
value
.
present
,
E1AP_BearerContextSetupRequestIEs__value_PR_ActivityNotificationLevel
);
DevAssert
(
ie
->
value
.
present
==
E1AP_BearerContextSetupRequestIEs__value_PR_ActivityNotificationLevel
);
out
->
activityNotificationLevel
=
ie
->
value
.
choice
.
ActivityNotificationLevel
;
break
;
case
E1AP_ProtocolIE_ID_id_System_BearerContextSetupRequest
:
_E1_EQ_CHECK_INT
(
ie
->
value
.
present
,
E1AP_BearerContextSetupRequestIEs__value_PR_System_BearerContextSetupRequest
);
E1AP_System_BearerContextSetupRequest_t
*
System_BearerContextSetupRequest
=
...
...
@@ -629,7 +623,6 @@ bool eq_bearer_context_setup_request(const e1ap_bearer_setup_req_t *a, const e1a
_E1_EQ_CHECK_LONG
(
a
->
cipheringAlgorithm
,
b
->
cipheringAlgorithm
);
_E1_EQ_CHECK_LONG
(
a
->
integrityProtectionAlgorithm
,
b
->
integrityProtectionAlgorithm
);
_E1_EQ_CHECK_LONG
(
a
->
ueDlAggMaxBitRate
,
b
->
ueDlAggMaxBitRate
);
_E1_EQ_CHECK_INT
(
a
->
activityNotificationLevel
,
b
->
activityNotificationLevel
);
_E1_EQ_CHECK_INT
(
a
->
numPDUSessions
,
b
->
numPDUSessions
);
_E1_EQ_CHECK_INT
(
a
->
numPDUSessionsMod
,
b
->
numPDUSessionsMod
);
// PLMN
...
...
openair2/E1AP/tests/e1ap_lib_test.c
View file @
4f613ab2
...
...
@@ -114,7 +114,6 @@ static void test_bearer_context_setup_request(void)
.
servingPLMNid
.
mcc
=
001
,
.
servingPLMNid
.
mnc
=
01
,
.
servingPLMNid
.
mnc_digit_length
=
0x02
,
.
activityNotificationLevel
=
ANL_PDU_SESSION
,
.
numPDUSessions
=
1
,
.
pduSession
[
0
].
sessionId
=
1
,
.
pduSession
[
0
].
sessionType
=
E1AP_PDU_Session_Type_ipv4
,
...
...
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