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
d2863d96
Commit
d2863d96
authored
Aug 09, 2024
by
Guido Casati
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactored f1ap_gnb_cu_configuration_update_acknowledge_t
* add transaction_id * refactored remaining members
parent
80a05271
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
11 deletions
+25
-11
openair2/COMMON/f1ap_messages_types.h
openair2/COMMON/f1ap_messages_types.h
+25
-11
No files found.
openair2/COMMON/f1ap_messages_types.h
View file @
d2863d96
...
...
@@ -98,6 +98,11 @@ typedef struct f1ap_plmn_t {
uint8_t
mnc_digit_length
;
}
f1ap_plmn_t
;
typedef
struct
f1ap_cp_tnl_s
{
in_addr_t
tl_address
;
// currently only IPv4 supported
uint16_t
port
;
}
f1ap_cp_tnl_t
;
typedef
enum
f1ap_mode_t
{
F1AP_MODE_TDD
=
0
,
F1AP_MODE_FDD
=
1
}
f1ap_mode_t
;
typedef
struct
f1ap_nr_frequency_info_t
{
...
...
@@ -229,22 +234,31 @@ typedef struct f1ap_setup_failure_s {
}
f1ap_setup_failure_t
;
typedef
struct
f1ap_gnb_cu_configuration_update_acknowledge_s
{
uint64_t
transaction_id
;
// Cells Failed to be Activated List
uint16_t
num_cells_failed_to_be_activated
;
f1ap_plmn_t
plmn
[
F1AP_MAX_NB_CELLS
];
uint64_t
nr_cellid
[
F1AP_MAX_NB_CELLS
];
uint16_t
cause
[
F1AP_MAX_NB_CELLS
];
struct
{
// NR CGI
f1ap_plmn_t
plmn
;
uint64_t
nr_cellid
;
uint16_t
cause
;
}
cells_failed_to_be_activated
[
F1AP_MAX_NB_CELLS
];
int
have_criticality
;
uint16_t
criticality_diagnostics
;
uint16_t
criticality_diagnostics
;
// gNB-CU TNL Association Setup List
uint16_t
noofTNLAssociations_to_setup
;
uint16_t
have_port
[
F1AP_MAX_NO_OF_TNL_ASSOCIATIONS
];
in_addr_t
tl_address
[
F1AP_MAX_NO_OF_TNL_ASSOCIATIONS
];
// currently only IPv4 supported
f1ap_cp_tnl_t
tnlAssociations_to_setup
[
F1AP_MAX_NO_OF_TNL_ASSOCIATIONS
];
// gNB-CU TNL Association Failed to Setup List
uint16_t
noofTNLAssociations_failed
;
in_addr_t
tl_address_failed
[
F1AP_MAX_NO_OF_TNL_ASSOCIATIONS
];
// currently only IPv4 supported
uint16_t
cause_failed
[
F1AP_MAX_NO_OF_TNL_ASSOCIATIONS
];
f1ap_cp_tnl_t
tnlAssociations_failed
[
F1AP_MAX_NO_OF_TNL_ASSOCIATIONS
];
// Dedicated SI Delivery Needed UE List
uint16_t
noofDedicatedSIDeliveryNeededUEs
;
uint32_t
gNB_CU_ue_id
[
F1AP_MAX_NO_UE_ID
];
f1ap_plmn_t
ue_plmn
[
F1AP_MAX_NO_UE_ID
];
uint64_t
ue_nr_cellid
[
F1AP_MAX_NO_UE_ID
];
struct
{
uint32_t
gNB_CU_ue_id
;
// NR CGI
f1ap_plmn_t
ue_plmn
;
uint64_t
ue_nr_cellid
;
}
dedicatedSIDeliveryNeededUEs
[
F1AP_MAX_NO_UE_ID
];
}
f1ap_gnb_cu_configuration_update_acknowledge_t
;
typedef
struct
f1ap_gnb_cu_configuration_update_failure_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