From 2089c69efbc4ae5c64cab8a5418187b21478987a Mon Sep 17 00:00:00 2001 From: Tarun Gupta Date: Mon, 4 Nov 2019 16:35:59 -0800 Subject: tcp: IPv6 flow label support Type:feature For cases when proxy is in use IPv6 flow label received in origin pkt needs to be added to ipv6 header of outgoing pkts from proxy to original destination and vice versa. Signed-off-by: Tarun Gupta Change-Id: I143f7e67237c0f865333078628a016b50ad5e630 Signed-off-by: Tarun Gupta --- src/vnet/tcp/tcp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vnet/tcp/tcp.h') diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index 7309e0ad109..4b0a0ddea53 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -435,6 +435,7 @@ typedef struct _tcp_connection u32 last_fib_check; /**< Last time we checked fib route for peer */ u16 mss; /**< Our max seg size that includes options */ u32 timestamp_delta; /**< Offset for timestamp */ + u32 ipv6_flow_label; /**< flow label for ipv6 header */ } tcp_connection_t; /* *INDENT-OFF* */ -- cgit 1.2.3-korg