diff options
author | Vladimir Isaev <visaev@netgate.com> | 2020-02-26 13:21:35 +0300 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-08-13 08:12:25 +0000 |
commit | b745d7b21dd5e7c434435c9fbd36360006cc3fae (patch) | |
tree | dbe54d9b59506a5cde5495eb7796063a3b9e92fa | |
parent | df76172d8add7ada1d804041f972d1218e6cd009 (diff) |
map: handle IPv6 extension headers for TCP/UDP
Without this patch offset for TCP/UDP headers was not calculated
correctly if there is one or more IPv6 extension headers.
Type: fix
Signed-off-by: Vladimir Isaev <visaev@netgate.com>
Change-Id: I04d6f5e42f8f072987192d6236085afbd74a4420
(cherry picked from commit 7d4cd0cf6f1a94953ef97ab885752424dea6948c)
-rw-r--r-- | src/plugins/map/ip6_map_t.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/map/ip6_map_t.c b/src/plugins/map/ip6_map_t.c index 6757163bb1e..c1c8b63647d 100644 --- a/src/plugins/map/ip6_map_t.c +++ b/src/plugins/map/ip6_map_t.c @@ -381,7 +381,7 @@ map_ip6_to_ip4_tcp_udp (vlib_buffer_t * p, bool udp_checksum) if (l4_protocol == IP_PROTOCOL_TCP) { - tcp_header_t *tcp = ip6_next_header (ip6); + tcp_header_t *tcp = (tcp_header_t *) u8_ptr_add (ip6, l4_offset); if (mm->tcp_mss > 0) { csum = tcp->checksum; @@ -392,7 +392,7 @@ map_ip6_to_ip4_tcp_udp (vlib_buffer_t * p, bool udp_checksum) } else { - udp_header_t *udp = ip6_next_header (ip6); + udp_header_t *udp = (udp_header_t *) u8_ptr_add (ip6, l4_offset); checksum = &udp->checksum; } |