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
alex037yang
OpenXG-RAN
Commits
a8bd9df3
Commit
a8bd9df3
authored
Sep 20, 2018
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove local_interface from F1U/UDP parameters
parent
0372c9b2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
6 deletions
+0
-6
openair2/ENB_APP/enb_config.h
openair2/ENB_APP/enb_config.h
+0
-1
openair2/F1AP/f1ap_cu_task.c
openair2/F1AP/f1ap_cu_task.c
+0
-1
openair2/F1AP/f1ap_du_task.c
openair2/F1AP/f1ap_du_task.c
+0
-1
openair2/LAYER2/PROTO_AGENT/cu_test.c
openair2/LAYER2/PROTO_AGENT/cu_test.c
+0
-1
openair2/LAYER2/PROTO_AGENT/du_test.c
openair2/LAYER2/PROTO_AGENT/du_test.c
+0
-1
openair2/LAYER2/PROTO_AGENT/proto_agent.c
openair2/LAYER2/PROTO_AGENT/proto_agent.c
+0
-1
No files found.
openair2/ENB_APP/enb_config.h
View file @
a8bd9df3
...
...
@@ -80,7 +80,6 @@ typedef struct mme_ip_address_s {
}
mme_ip_address_t
;
typedef
struct
cu_params
{
const
char
*
local_interface
;
const
char
*
local_ipv4_address
;
const
uint16_t
local_port
;
const
char
*
remote_ipv4_address
;
...
...
openair2/F1AP/f1ap_cu_task.c
View file @
a8bd9df3
...
...
@@ -68,7 +68,6 @@ void cu_task_handle_sctp_association_resp(instance_t instance, sctp_new_associat
/* setup parameters for F1U and start the server */
const
cudu_params_t
params
=
{
.
local_interface
=
NULL
,
/* is not used */
.
local_ipv4_address
=
RC
.
rrc
[
instance
]
->
eth_params_s
.
my_addr
,
.
local_port
=
RC
.
rrc
[
instance
]
->
eth_params_s
.
my_portd
,
.
remote_ipv4_address
=
RC
.
rrc
[
instance
]
->
eth_params_s
.
remote_addr
,
...
...
openair2/F1AP/f1ap_du_task.c
View file @
a8bd9df3
...
...
@@ -100,7 +100,6 @@ void du_task_handle_sctp_association_resp(instance_t instance, sctp_new_associat
/* setup parameters for F1U and start the server */
const
cudu_params_t
params
=
{
.
local_interface
=
NULL
,
/* is not used */
.
local_ipv4_address
=
RC
.
mac
[
instance
]
->
eth_params_n
.
my_addr
,
.
local_port
=
RC
.
mac
[
instance
]
->
eth_params_n
.
my_portd
,
.
remote_ipv4_address
=
RC
.
mac
[
instance
]
->
eth_params_n
.
remote_addr
,
...
...
openair2/LAYER2/PROTO_AGENT/cu_test.c
View file @
a8bd9df3
...
...
@@ -51,7 +51,6 @@ void close_proto_agent(void)
int
main
(
int
argc
,
char
*
argv
[])
{
const
cudu_params_t
params
=
{
.
local_interface
=
"lo"
,
.
local_ipv4_address
=
"192.168.12.45"
,
.
local_port
=
6464
,
.
remote_ipv4_address
=
"192.168.12.45"
,
...
...
openair2/LAYER2/PROTO_AGENT/du_test.c
View file @
a8bd9df3
...
...
@@ -52,7 +52,6 @@ void close_proto_agent(void)
int
main
(
int
argc
,
char
*
argv
[])
{
const
cudu_params_t
params
=
{
.
local_interface
=
"lo"
,
.
local_ipv4_address
=
"192.168.12.45"
,
.
local_port
=
6465
,
.
remote_ipv4_address
=
"192.168.12.45"
,
...
...
openair2/LAYER2/PROTO_AGENT/proto_agent.c
View file @
a8bd9df3
...
...
@@ -59,7 +59,6 @@ int proto_agent_start(mod_id_t mod_id, const cudu_params_t *p)
{
int
channel_id
;
DevAssert
(
p
->
local_interface
);
DevAssert
(
p
->
local_ipv4_address
);
DevAssert
(
p
->
local_port
>
1024
);
// "unprivileged" port
DevAssert
(
p
->
remote_ipv4_address
);
...
...
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