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
promise
OpenXG-RAN
Commits
1fa29baf
Commit
1fa29baf
authored
Nov 05, 2014
by
Lionel Gauthier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
git-svn-id:
http://svn.eurecom.fr/openair4G/trunk@5973
818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent
592e7f60
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
openair-cn/GTPV1-U/gtpv1u_eNB.c
openair-cn/GTPV1-U/gtpv1u_eNB.c
+0
-2
openair-cn/GTPV1-U/gtpv1u_task.c
openair-cn/GTPV1-U/gtpv1u_task.c
+4
-2
No files found.
openair-cn/GTPV1-U/gtpv1u_eNB.c
View file @
1fa29baf
...
...
@@ -859,7 +859,6 @@ void *gtpv1u_eNB_task(void *args)
udp_data_ind_p
->
peer_port
,
udp_data_ind_p
->
peer_address
);
itti_free
(
ITTI_MSG_ORIGIN_ID
(
received_message_p
),
udp_data_ind_p
->
buffer
);
udp_data_ind_p
->
buffer
=
NULL
;
}
break
;
...
...
@@ -916,7 +915,6 @@ void *gtpv1u_eNB_task(void *args)
}
/* Buffer is no longer needed, free it */
itti_free
(
ITTI_MSG_ORIGIN_ID
(
received_message_p
),
data_req_p
->
buffer
);
data_req_p
->
buffer
=
NULL
;
}
break
;
...
...
openair-cn/GTPV1-U/gtpv1u_task.c
View file @
1fa29baf
...
...
@@ -388,7 +388,6 @@ static void *gtpv1u_thread(void *args)
udp_data_ind_p
->
peer_port
,
udp_data_ind_p
->
peer_address
);
itti_free
(
ITTI_MSG_ORIGIN_ID
(
received_message_p
),
udp_data_ind_p
->
buffer
);
udp_data_ind_p
->
buffer
=
NULL
;
}
break
;
...
...
@@ -431,6 +430,10 @@ static void *gtpv1u_thread(void *args)
NW_IN NwU8T *tpdu,
NW_IN NwU16T tpduLength,
NW_OUT NwGtpv1uMsgHandleT *phMsg)*/
GTPU_DEBUG
(
"GTPV1U_TUNNEL_DATA_REQ buffer %p seq num %d %d bytes
\n
"
,
data_req_p
->
buffer
,
gtpv1u_sgw_data
.
seq_num
,
data_req_p
->
length
);
rc
=
nwGtpv1uGpduMsgNew
(
gtpv1u_sgw_data
.
gtpv1u_stack
,
00
,
// TO DO bearer_p->port, but not needed when looking at processing
NW_FALSE
,
...
...
@@ -455,7 +458,6 @@ static void *gtpv1u_thread(void *args)
}
/* Buffer is no longer needed, free it */
itti_free
(
ITTI_MSG_ORIGIN_ID
(
received_message_p
),
data_req_p
->
buffer
);
data_req_p
->
buffer
=
NULL
;
}
break
;
case
TERMINATE_MESSAGE
:
{
...
...
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