diff options
author | Florin Coras <fcoras@cisco.com> | 2020-07-16 10:05:02 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-07-23 16:39:48 +0000 |
commit | 1caf7f11c0197a912ccc28e67e4e9af75323af80 (patch) | |
tree | 2a243f6de4817ba23bdf58d29590d7fdc389e90c /src/vnet/tcp/tcp_output.c | |
parent | bf9a0c8097d47f052efea13a09d3a6c6fc68fb35 (diff) |
tcp: track pending timers
Also removes delack timer and reuses the u32 for the pending timers
list.
Type: fix
Ticket: VPP-1923
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I4edbb72d5b2aa5e14f87659f49e675af1e834aca
Diffstat (limited to 'src/vnet/tcp/tcp_output.c')
-rw-r--r-- | src/vnet/tcp/tcp_output.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/vnet/tcp/tcp_output.c b/src/vnet/tcp/tcp_output.c index 46c5661f7c1..e9bff5b954a 100644 --- a/src/vnet/tcp/tcp_output.c +++ b/src/vnet/tcp/tcp_output.c @@ -1064,17 +1064,6 @@ tcp_program_retransmit (tcp_connection_t * tc) } /** - * Delayed ack timer handler - * - * Sends delayed ACK when timer expires - */ -void -tcp_timer_delack_handler (tcp_connection_t * tc) -{ - tcp_send_ack (tc); -} - -/** * Send window update ack * * Ensures that it will be sent only once, after a zero rwnd has been |