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
littleBu
OpenXG-RAN
Commits
9e9bd278
Commit
9e9bd278
authored
Dec 17, 2024
by
Guido Casati
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor: RCconfig_NR_CU_E1 function description and logging
parent
bcd12702
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
executables/nr-cuup.c
executables/nr-cuup.c
+1
-0
openair2/E1AP/e1ap_setup.c
openair2/E1AP/e1ap_setup.c
+11
-0
No files found.
executables/nr-cuup.c
View file @
9e9bd278
...
...
@@ -172,6 +172,7 @@ int main(int argc, char **argv)
MessageDef
*
msg
=
RCconfig_NR_CU_E1
(
&
e1type
);
AssertFatal
(
msg
!=
NULL
,
"Send init to task for E1AP UP failed
\n
"
);
itti_send_msg_to_task
(
TASK_CUUP_E1
,
0
,
msg
);
LOG_D
(
E1AP
,
"Send E1AP REGISTER REQ to TASK_CUUP_E1
\n
"
);
#ifdef E2_AGENT
//////////////////////////////////
...
...
openair2/E1AP/e1ap_setup.c
View file @
9e9bd278
...
...
@@ -67,6 +67,17 @@ static void get_NGU_S1U_addr(char **addr, uint16_t *port)
return
;
}
/**
* @brief Prepares an E1AP_REGISTER_REQ message for gNB-CU-UP/CP registration
*
* This function creates and populates an E1AP_REGISTER_REQ message using system
* configuration parameters. It supports both integrated CU-CP/UP and E1 splits,
* fetching RAN, PLMN, NSSAIs, and network configuration.
*
* @param entity Specifies the entity type (CU-CP or CU-UP. If NULL, assumes integrated CU-CP/UP
*
* @return A pointer to the E1AP_REGISTER_REQ message or NULL on allocation failure
*/
MessageDef
*
RCconfig_NR_CU_E1
(
const
E1_t
*
entity
)
{
MessageDef
*
msgConfig
=
itti_alloc_new_message
(
TASK_GNB_APP
,
0
,
E1AP_REGISTER_REQ
);
...
...
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