diff options
author | Florin Coras <fcoras@cisco.com> | 2020-10-20 13:45:51 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-10-21 11:04:26 +0000 |
commit | 97f9694ad364a9bb19d9f642ececfd271d1214ec (patch) | |
tree | f735ab7ab03dad79b8af6bf00732925923569c39 /src/vnet/tcp/tcp_packet.h | |
parent | df601ae2d16ed127a9506a7a865484632ee1afe1 (diff) |
gso: remove dependency on tcp proto implementation
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I3af84e968c38df0452746729dcb722d48fa438fb
Diffstat (limited to 'src/vnet/tcp/tcp_packet.h')
-rw-r--r-- | src/vnet/tcp/tcp_packet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp_packet.h b/src/vnet/tcp/tcp_packet.h index fcc55ff549e..9ccd8e0ceb3 100644 --- a/src/vnet/tcp/tcp_packet.h +++ b/src/vnet/tcp/tcp_packet.h @@ -172,6 +172,7 @@ typedef struct #define TCP_MAX_WND_SCALE 14 /* See RFC 1323 */ #define TCP_OPTS_ALIGN 4 #define TCP_OPTS_MAX_SACK_BLOCKS 3 +#define TCP_MAX_GSO_SZ 65536 /* Modulo arithmetic for TCP sequence numbers */ #define seq_lt(_s1, _s2) ((i32)((_s1)-(_s2)) < 0) |