From 1caf7f11c0197a912ccc28e67e4e9af75323af80 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Thu, 16 Jul 2020 10:05:02 -0700 Subject: 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 Change-Id: I4edbb72d5b2aa5e14f87659f49e675af1e834aca --- src/vnet/tcp/tcp_output.c | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/vnet/tcp/tcp_output.c') 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 @@ -1063,17 +1063,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 * -- cgit 1.2.3-korg