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
f3890dcd
Commit
f3890dcd
authored
Nov 07, 2024
by
Guido Casati
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Completed GNB-CU-UP E1 Setup failure according to 9.2.1.6 of 3GPP TS 38.463
parent
b2f5f216
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
openair2/COMMON/e1ap_messages_types.h
openair2/COMMON/e1ap_messages_types.h
+31
-0
No files found.
openair2/COMMON/e1ap_messages_types.h
View file @
f3890dcd
...
@@ -42,6 +42,7 @@
...
@@ -42,6 +42,7 @@
#define E1AP_SECURITY_KEY_SIZE 16 // keys have 128 bits length
#define E1AP_SECURITY_KEY_SIZE 16 // keys have 128 bits length
#define E1AP_MAX_TL_ADDRESSES 16
#define E1AP_MAX_TL_ADDRESSES 16
#define E1AP_MAX_GTP_TL_ADDRESSES 16
#define E1AP_MAX_GTP_TL_ADDRESSES 16
#define E1AP_MAX_NUM_ERRORS 256
#define E1AP_REGISTER_REQ(mSGpTR) (mSGpTR)->ittiMsg.e1ap_register_req
#define E1AP_REGISTER_REQ(mSGpTR) (mSGpTR)->ittiMsg.e1ap_register_req
#define E1AP_SETUP_REQ(mSGpTR) (mSGpTR)->ittiMsg.e1ap_setup_req
#define E1AP_SETUP_REQ(mSGpTR) (mSGpTR)->ittiMsg.e1ap_setup_req
...
@@ -159,6 +160,33 @@ typedef struct PLMN_ID_s {
...
@@ -159,6 +160,33 @@ typedef struct PLMN_ID_s {
int
mnc_digit_length
;
int
mnc_digit_length
;
}
PLMN_ID_t
;
}
PLMN_ID_t
;
typedef
enum
{
CRITICALITY_REJECT
=
0
,
CRITICALITY_IGNORE
,
CRITICALITY_NOTIFY
}
criticality_t
;
typedef
enum
{
ERROR_TYPE_NOT_UNDERSTOOD
=
0
,
ERROR_TYPE_MISSING
,
}
error_type_t
;
typedef
enum
{
TRIGGERING_MSG_INITIATING
=
0
,
TRIGGERING_MSG_SUCCESSFUL_OUTCOME
,
TRIGGERING_MSG_UNSUCCESSFUL_OUTCOME
}
triggering_msg_t
;
typedef
struct
criticality_diagnostics_ie_s
{
criticality_t
criticality
;
int
ie_id
;
error_type_t
error_type
;
}
criticality_diagnostics_ie_t
;
typedef
struct
criticality_diagnostics_s
{
int
*
procedure_code
;
triggering_msg_t
*
triggering_msg
;
criticality_t
*
procedure_criticality
;
int
num_errors
;
criticality_diagnostics_ie_t
errors
[
E1AP_MAX_NUM_ERRORS
];
}
criticality_diagnostics_t
;
typedef
struct
{
typedef
struct
{
in_addr_t
ipsec_tl_address
;
in_addr_t
ipsec_tl_address
;
uint8_t
num_gtp_tl_addresses
;
uint8_t
num_gtp_tl_addresses
;
...
@@ -225,6 +253,9 @@ typedef struct e1ap_setup_resp_s {
...
@@ -225,6 +253,9 @@ typedef struct e1ap_setup_resp_s {
/* E1AP Setup Failure */
/* E1AP Setup Failure */
typedef
struct
e1ap_setup_fail_s
{
typedef
struct
e1ap_setup_fail_s
{
long
transac_id
;
long
transac_id
;
e1ap_cause_t
cause
;
long
*
time_to_wait
;
criticality_diagnostics_t
*
crit_diag
;
}
e1ap_setup_fail_t
;
}
e1ap_setup_fail_t
;
typedef
struct
up_params_s
{
typedef
struct
up_params_s
{
...
...
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