diff options
author | Florin Coras <fcoras@cisco.com> | 2019-03-28 16:31:52 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-03-29 09:31:48 +0000 |
commit | 74b7437bd118e104f50831f8a8f3cc8d10aa2530 (patch) | |
tree | 84ca97893986dfffce6c36277bfd0ebb8f06d64f /src/vnet/tcp/tcp_output.c | |
parent | d4bdd93f07b0acc15f84ec602532bc3dbab3c2bb (diff) |
tcp: remove sent rcv wnd 0 flag
Change-Id: If6c672d1caa8884eb5d819311606a79a3de81200
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 | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/vnet/tcp/tcp_output.c b/src/vnet/tcp/tcp_output.c index b1e848c5376..518a80de65e 100644 --- a/src/vnet/tcp/tcp_output.c +++ b/src/vnet/tcp/tcp_output.c @@ -183,16 +183,6 @@ tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state) return tcp_initial_window_to_advertise (tc); tcp_update_rcv_wnd (tc); - - if (tc->rcv_wnd == 0) - { - tc->flags |= TCP_CONN_SENT_RCV_WND0; - } - else - { - tc->flags &= ~TCP_CONN_SENT_RCV_WND0; - } - return tc->rcv_wnd >> tc->rcv_wscale; } |