diff options
author | Florin Coras <fcoras@cisco.com> | 2018-04-26 08:26:52 -0700 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2018-05-17 06:29:13 +0000 |
commit | f9d0568344b4766bc1ddc1be9a7e9afd00e2d832 (patch) | |
tree | 6266d507999c3fff98c6d8da849c0b4b9ed116a6 /src/vnet/tcp/tcp.h | |
parent | 78c568905724af785e90185fd89fa8717b3b35c2 (diff) |
tcp: handle link-local addresses
Change-Id: I9ede6bc861350c7d9e78fa4d96cd584c2816d06f
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp.h')
-rw-r--r-- | src/vnet/tcp/tcp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index 8a6f74ab13a..837b5b4d0d2 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -305,6 +305,7 @@ typedef struct _tcp_connection u16 mss; /**< Our max seg size that includes options */ u32 limited_transmit; /**< snd_nxt when limited transmit starts */ u32 last_fib_check; /**< Last time we checked fib route for peer */ + u32 sw_if_index; /**< Interface for the connection */ } tcp_connection_t; struct _tcp_cc_algorithm |