Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
OpenXG
OpenXG UE
Commits
3af56d57
Commit
3af56d57
authored
Jun 20, 2020
by
Michael Cook
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove redundant declaration of send_standalone_dummy
It's in phy_stub_UE.h
parent
d9ac0e97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
openair2/PHY_INTERFACE/phy_stub_UE.c
openair2/PHY_INTERFACE/phy_stub_UE.c
+3
-4
No files found.
openair2/PHY_INTERFACE/phy_stub_UE.c
View file @
3af56d57
...
@@ -31,11 +31,11 @@
...
@@ -31,11 +31,11 @@
#include "common/config/config_load_configmodule.h"
#include "common/config/config_load_configmodule.h"
#include "common/config/config_userapi.h"
#include "common/config/config_userapi.h"
#include <arpa/inet.h>
#include <arpa/inet.h>
#include <string.h>
#include <errno.h>
extern
int
oai_nfapi_rach_ind
(
nfapi_rach_indication_t
*
rach_ind
);
extern
int
oai_nfapi_rach_ind
(
nfapi_rach_indication_t
*
rach_ind
);
void
send_standalone_dummy
();
void
configure_nfapi_pnf
(
char
*
vnf_ip_addr
,
void
configure_nfapi_pnf
(
char
*
vnf_ip_addr
,
int
vnf_p5_port
,
int
vnf_p5_port
,
char
*
pnf_ip_addr
,
char
*
pnf_ip_addr
,
...
@@ -46,7 +46,6 @@ UL_IND_t *UL_INFO = NULL;
...
@@ -46,7 +46,6 @@ UL_IND_t *UL_INFO = NULL;
nfapi_ul_config_request_t
*
ul_config_req
=
NULL
;
nfapi_ul_config_request_t
*
ul_config_req
=
NULL
;
nfapi_hi_dci0_request_t
*
hi_dci0_req
=
NULL
;
nfapi_hi_dci0_request_t
*
hi_dci0_req
=
NULL
;
queue_t
dl_config_req_queue
;
queue_t
dl_config_req_queue
;
queue_t
tx_req_pdu_queue
;
queue_t
tx_req_pdu_queue
;
queue_t
ul_config_req_queue
;
queue_t
ul_config_req_queue
;
...
@@ -1233,7 +1232,7 @@ void send_standalone_dummy()
...
@@ -1233,7 +1232,7 @@ void send_standalone_dummy()
static
const
uint16_t
dummy
[]
=
{
0
,
0
};
static
const
uint16_t
dummy
[]
=
{
0
,
0
};
if
(
send
(
ue_sock_descriptor
,
dummy
,
sizeof
(
dummy
),
0
)
<
0
)
if
(
send
(
ue_sock_descriptor
,
dummy
,
sizeof
(
dummy
),
0
)
<
0
)
{
{
LOG_E
(
MAC
,
"
Send dummy to OAI UE failed
\n
"
);
LOG_E
(
MAC
,
"
send dummy to OAI UE failed: %s
\n
"
,
strerror
(
errno
)
);
return
;
return
;
}
}
}
}
...
...
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