diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2020-04-23 17:59:49 +0200 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2020-05-05 07:44:12 +0000 |
commit | 84f91fa9c54f82c54b58ea3bf6e9ba22ff735d3a (patch) | |
tree | 63a762ea0e66b1a0074378f25984eb6450ac9ceb /src/vnet/interface_output.h | |
parent | 5ec6a4ea4440211e468a813ffe0f3173421c9b29 (diff) |
gso: add support for IP-IP
Type: feature
Change-Id: I37752af8496e0042a1da91124f3d94216b39ff11
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/vnet/interface_output.h')
-rw-r--r-- | src/vnet/interface_output.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/interface_output.h b/src/vnet/interface_output.h index ef7aaa8999e..c408fca9ca9 100644 --- a/src/vnet/interface_output.h +++ b/src/vnet/interface_output.h @@ -92,7 +92,8 @@ vnet_calc_checksums_inline (vlib_main_t * vm, vlib_buffer_t * b, if (with_gso) { generic_header_offset_t gho = { 0 }; - vnet_generic_header_offset_parser (b, &gho); + vnet_generic_header_offset_parser (b, &gho, 1 /* l2 */ , is_ip4, + is_ip6); ASSERT (gho.gho_flags ^ (GHO_F_IP4 | GHO_F_IP6)); |