From 3d30598b7b4dd6d7dbffc883a96692e90e4320f5 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Wed, 16 Oct 2019 19:28:17 -0700 Subject: tcp: avoid sending acks when data available Type: fix Change-Id: I02e2cb2d349f9ddb2bfed040a08ca448f379d565 Signed-off-by: Florin Coras (cherry picked from commit cb711a4ec908b89edc9da29d3c2e093dab85fbbf) --- src/vnet/tcp/tcp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vnet/tcp/tcp.h') diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index 8636a7c85db..657f1bea449 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -786,6 +786,7 @@ void tcp_send_reset (tcp_connection_t * tc); void tcp_send_syn (tcp_connection_t * tc); void tcp_send_synack (tcp_connection_t * tc); void tcp_send_fin (tcp_connection_t * tc); +void tcp_send_ack (tcp_connection_t * tc); void tcp_update_burst_snd_vars (tcp_connection_t * tc); void tcp_update_rto (tcp_connection_t * tc); void tcp_flush_frame_to_output (tcp_worker_ctx_t * wrk, u8 is_ip4); -- cgit 1.2.3-korg