diff options
author | Florin Coras <fcoras@cisco.com> | 2018-06-09 06:49:59 -0700 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2018-06-10 18:27:37 +0000 |
commit | 887b7ba8ad000a535ad4b7d730c6f07c0ee65165 (patch) | |
tree | b68c175a3437be3ec4070b73176dee9c608e479d /src/vnet/tcp/tcp_input.c | |
parent | 70a745d96653c2d3e72ba1704c29aaa946ed9a92 (diff) |
tcp: fix timer based recovery exit condition
Change-Id: I3f36e5760fd2935cc29d22601d4c0a1d2a22ba84
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp_input.c')
-rw-r--r-- | src/vnet/tcp/tcp_input.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp_input.c b/src/vnet/tcp/tcp_input.c index 19ecc7deef8..04612f885f2 100644 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -1006,7 +1006,6 @@ tcp_cc_recover (tcp_connection_t * tc) ASSERT (tcp_in_cong_recovery (tc)); if (tcp_cc_is_spurious_retransmit (tc)) { - clib_warning ("here"); tcp_cc_congestion_undo (tc); return 1; } |