Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Commits
391cee93
Commit
391cee93
authored
2 years ago
by
Robert Schmidt
Committed by
Sakthivel Velumani
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix ITTI errors in E1AP target
parent
db4146e4
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
openair2/COMMON/e1ap_messages_def.h
+4
-0
4 additions, 0 deletions
openair2/COMMON/e1ap_messages_def.h
openair2/COMMON/messages_def.h
+1
-0
1 addition, 0 deletions
openair2/COMMON/messages_def.h
openair2/E1AP/e1ap_common.h
+10
-29
10 additions, 29 deletions
openair2/E1AP/e1ap_common.h
with
15 additions
and
29 deletions
openair2/COMMON/e1ap_messages_def.h
+
4
−
0
View file @
391cee93
...
...
@@ -19,9 +19,13 @@
* contact@openairinterface.org
*/
#ifndef E1AP_MESSAGES_DEF_H_
#define E1AP_MESSAGES_DEF_H_
/* gNB_CUUP application layer -> E1AP messages */
MESSAGE_DEF
(
E1AP_SETUP_REQ
,
MESSAGE_PRIORITY_MED
,
e1ap_setup_req_t
,
e1ap_setup_req
)
/* E1AP -> eNB_DU or eNB_CU_RRC -> E1AP application layer messages */
MESSAGE_DEF
(
E1AP_SETUP_RESP
,
MESSAGE_PRIORITY_MED
,
e1ap_setup_resp_t
,
e1ap_setup_resp
)
#endif
/* E1AP_MESSAGES_DEF_H_ */
This diff is collapsed.
Click to expand it.
openair2/COMMON/messages_def.h
+
1
−
0
View file @
391cee93
...
...
@@ -42,3 +42,4 @@
#include
"udp_messages_def.h"
#include
"gtpv1_u_messages_def.h"
#include
"flexran_messages_def.h"
#include
"e1ap_message_types.h"
This diff is collapsed.
Click to expand it.
openair2/E1AP/e1ap_common.h
+
10
−
29
View file @
391cee93
...
...
@@ -21,11 +21,14 @@
* contact@openairinterface.org
*/
#ifndef E1AP_COMMON_H_
#define E1AP_COMMON_H_
#include
"E1AP_E1AP-PDU.h"
#include
"E1AP_TransactionID.h"
#include
"E1AP_PriorityLevel.h"
#define MAX_NUM_TRANSAC_IDS 8
#define E1AP_MAX_NUM_PLMNS
#define E1AP_SETUP_REQ(mSGpTR) (mSGpTR)->ittiMsg.e1ap_setup_req
#define E1AP_SETUP_RESP(mSGpTR) (mSGpTR)->ittiMsg.e1ap_setup_resp
...
...
@@ -36,36 +39,12 @@
typedef
f1ap_net_ip_address_t
e1ap_net_ip_address_t
;
typedef
int
(
*
e1ap_message_processing_t
)(
instance_t
instance
,
uint32_t
assoc_id
,
uint32_t
stream
,
E1AP_E1AP_PDU_t
*
message_p
instance_t
instance
;
uint32_t
assoc_id
;
uint32_t
stream
;
E1AP_E1AP_PDU_t
*
message_p
;
}
;
typedef
struct
PLMN_ID_s
{
int
mcc
;
int
mnc
;
int
mnc_digit_length
;
}
PLMN_ID_t
;
typedef
struct
e1ap_setup_req_s
{
uint64_t
gNB_cu_up_id
;
char
*
gNB_cu_up_name
;
uint64_t
transac_id
;
int
supported_plmns
;
PLMN_ID_t
plmns
[
E1AP_MAX_NUM_PLMNS
];
uint16_t
sctp_in_streams
;
uint16_t
sctp_out_streams
;
uint16_t
default_sctp_stream_id
;
f1ap_net_ip_address_t
CUUP_e1_ip_address
;
f1ap_net_ip_address_t
CUCP_e1_ip_address
;
E1AP_CNSupport_t
cn_support
;
}
e1ap_setup_req_t
;
typedef
struct
e1ap_setup_resp_s
{
long
transac_id
;
}
e1ap_setup_resp_t
;
typedef
struct
cell_group_s
{
long
id
;
}
cell_group_t
;
...
...
@@ -193,3 +172,5 @@ typedef enum {
CPtype
=
0
,
UPtype
}
E1_t
;
#endif
/* E1AP_COMMON_H_ */
This diff is collapsed.
Click to expand it.
Robert Schmidt
@schmidtr
mentioned in commit
553f1d1a
·
2 years ago
mentioned in commit
553f1d1a
mentioned in commit 553f1d1a52845911be4ba61ec2bcc5c60ad42ae7
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment