diff options
author | Florin Coras <fcoras@cisco.com> | 2018-12-16 20:57:29 -0800 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2018-12-17 18:51:19 +0000 |
commit | 8124cb784050275372e05a97b1e62f9f1ba5a091 (patch) | |
tree | fea3fc4fa4fea1517f482c949e16175d3f902d52 /src/vnet/tcp/tcp_output.c | |
parent | 91236ce0117fe5662b106b54824c84e44bfd7a2d (diff) |
tcp: fix handling of broken syn options
Change-Id: Ia8b2a077ba4897ddd15cf33221b191cd7a3f1d33
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp_output.c')
-rw-r--r-- | src/vnet/tcp/tcp_output.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp_output.c b/src/vnet/tcp/tcp_output.c index 113fb148c37..fc4bceb58cb 100644 --- a/src/vnet/tcp/tcp_output.c +++ b/src/vnet/tcp/tcp_output.c @@ -447,7 +447,6 @@ tcp_init_mss (tcp_connection_t * tc) if (tc->snd_mss < 45) { - clib_warning ("snd mss is 0"); /* Assume that at least the min default mss works */ tc->snd_mss = default_min_mss; tc->rcv_opts.mss = default_min_mss; |