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
wangjie
OpenXG-RAN
Commits
452ab1f6
Commit
452ab1f6
authored
Mar 22, 2021
by
heshanyun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix issue about Uplane NG when withS1
parent
458f8aae
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
openair3/ocp-gtpu/gtp_itf.cpp
openair3/ocp-gtpu/gtp_itf.cpp
+13
-0
openair3/ocp-gtpu/gtp_itf.h
openair3/ocp-gtpu/gtp_itf.h
+1
-0
No files found.
openair3/ocp-gtpu/gtp_itf.cpp
View file @
452ab1f6
...
...
@@ -844,6 +844,19 @@ void *ocp_gtpv1uTask(void *args) {
ocp_gtpv1u_delete_ngu_tunnel
(
compatInst
(
ITTI_MSG_DESTINATION_INSTANCE
(
message_p
)),
&
GTPV1U_GNB_DELETE_TUNNEL_REQ
(
message_p
));
break
;
// DATA TO BE SENT TO 5GC
case
GTPV1U_GNB_TUNNEL_DATA_REQ
:
{
gtpv1u_enb_tunnel_data_req_t
reqTmp
;
reqTmp
.
buffer
=
GTPV1U_GNB_TUNNEL_DATA_REQ
(
message_p
).
buffer
;
reqTmp
.
length
=
GTPV1U_GNB_TUNNEL_DATA_REQ
(
message_p
).
length
;
reqTmp
.
offset
=
GTPV1U_GNB_TUNNEL_DATA_REQ
(
message_p
).
offset
;
reqTmp
.
rnti
=
GTPV1U_GNB_TUNNEL_DATA_REQ
(
message_p
).
rnti
;
reqTmp
.
rab_id
=
GTPV1U_GNB_TUNNEL_DATA_REQ
(
message_p
).
pdusession_id
;
gtpv1uSend
(
compatInst
(
ITTI_MSG_DESTINATION_INSTANCE
(
message_p
)),
&
reqTmp
,
false
,
false
);
itti_free
(
OCP_GTPV1_U
,
GTPV1U_GNB_TUNNEL_DATA_REQ
(
message_p
).
buffer
);
}
break
;
default:
LOG_E
(
GTPU
,
"Received unexpected message %s
\n
"
,
ITTI_MSG_NAME
(
message_p
));
...
...
openair3/ocp-gtpu/gtp_itf.h
View file @
452ab1f6
...
...
@@ -18,6 +18,7 @@ extern "C" {
#define gtpv1u_update_ngu_tunnel ocp_gtpv1u_update_ngu_tunnel
#define gtpv1u_delete_ngu_tunnel ocp_gtpv1u_delete_ngu_tunnel
#define gtpv1u_gNB_task ocp_gtpv1uTask
#define nr_gtpv1u_gNB_task ocp_gtpv1uTask
#define TASK_VARIABLE OCP_GTPV1_U
#else
#define TASK_VARIABLE TASK_GTPV1_U
...
...
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