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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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-RAN
Commits
21bf5c46
Commit
21bf5c46
authored
Dec 11, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GTPV1U_ENB_END_MARKER_REQ: use correct message struct
parent
054506f5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
openair3/ocp-gtpu/gtp_itf.cpp
openair3/ocp-gtpu/gtp_itf.cpp
+6
-5
No files found.
openair3/ocp-gtpu/gtp_itf.cpp
View file @
21bf5c46
...
...
@@ -403,9 +403,10 @@ static void gtpv1uSendDlDeliveryStatus(instance_t instance, gtpv1u_DU_buffer_rep
compatInst
(
instance
),
tmp
.
outgoing_ip_addr
,
tmp
.
outgoing_port
,
GTP_GPDU
,
tmp
.
teid_outgoing
,
NULL
,
0
,
false
,
false
,
0
,
0
,
NR_RAN_CONTAINER
,
extensionHeader
->
buffer
,
extensionHeader
->
length
);
}
static
void
gtpv1uEndTunnel
(
instance_t
instance
,
gtpv1u_tunnel_data_req_t
*
req
)
{
ue_id_t
ue_id
=
req
->
ue_id
;
int
bearer_id
=
req
->
bearer_id
;
static
void
gtpv1uEndTunnel
(
instance_t
instance
,
gtpv1u_enb_end_marker_req_t
*
req
)
{
ue_id_t
ue_id
=
req
->
rnti
;
int
bearer_id
=
req
->
rab_id
;
pthread_mutex_lock
(
&
globGtp
.
gtp_lock
);
getInstRetVoid
(
compatInst
(
instance
));
getUeRetVoid
(
inst
,
ue_id
);
...
...
@@ -1305,8 +1306,8 @@ void *gtpv1uTask(void *args) {
break
;
case
GTPV1U_ENB_END_MARKER_REQ
:
gtpv1uEndTunnel
(
compatInst
(
myInstance
),
&
GTPV1U_
TUNNEL_DATA
_REQ
(
message_p
));
itti_free
(
TASK_GTPV1_U
,
GTPV1U_
TUNNEL_DATA
_REQ
(
message_p
).
buffer
);
gtpv1uEndTunnel
(
compatInst
(
myInstance
),
&
GTPV1U_
ENB_END_MARKER
_REQ
(
message_p
));
itti_free
(
TASK_GTPV1_U
,
GTPV1U_
ENB_END_MARKER
_REQ
(
message_p
).
buffer
);
break
;
case
GTPV1U_ENB_DATA_FORWARDING_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