Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-UPF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
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-UPF
Commits
af151111
Commit
af151111
authored
Feb 23, 2021
by
wangyongshou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid the problem and solve it later
parent
2b2a293e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
src/vppe/src/plugins/upf/upf_gtpu_decap.c
src/vppe/src/plugins/upf/upf_gtpu_decap.c
+13
-6
No files found.
src/vppe/src/plugins/upf/upf_gtpu_decap.c
View file @
af151111
...
...
@@ -1246,7 +1246,7 @@ VLIB_NODE_FN(upf_gtp_error_ind_node) (vlib_main_t * vm,
upf_session_t
*
t
;
vlib_buffer_t
*
b
;
u32
session_index
=
~
0
;
u32
bi
,
err
;
u32
bi
,
err
=
0
;
bi
=
buffers
[
0
];
buffers
+=
1
;
...
...
@@ -1277,11 +1277,18 @@ VLIB_NODE_FN(upf_gtp_error_ind_node) (vlib_main_t * vm,
vlib_buffer_advance
(
b
,
sizeof
(
gtpu_header_t
)
-
4
);
}
if
(
decode_error_indication
(
b
,
&
error
)
!=
0
)
{
err
=
UPF_GTPU_ERROR_NO_SUCH_TUNNEL
;
goto
trace
;
}
if
(
0
)
{
if
(
decode_error_indication
(
b
,
&
error
)
!=
0
)
{
err
=
UPF_GTPU_ERROR_NO_SUCH_TUNNEL
;
goto
trace
;
}
}
//Avoid the problem and solve it later
if
(
true
)
goto
trace
;
if
(
ip46_address_is_ip4
(
&
error
.
addr
))
{
...
...
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