From 0ece75c66a206ab12f0d01b4754d123dccb4b929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Fri, 17 Dec 2021 14:11:00 +0100 Subject: [PATCH] MINOR: quic: Increase the RX buffer for each connection Double this buffer size which reaches 16ko for now on. --- include/haproxy/xprt_quic-t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/haproxy/xprt_quic-t.h b/include/haproxy/xprt_quic-t.h index 51b45871a..ddb4d8648 100644 --- a/include/haproxy/xprt_quic-t.h +++ b/include/haproxy/xprt_quic-t.h @@ -235,7 +235,7 @@ enum quic_pkt_type { /* Size of the internal buffer of QUIC RX buffer. */ #define QUIC_RX_BUFSZ (1UL << 18) /* Size of the QUIC RX buffer for the connections */ -#define QUIC_CONN_RX_BUFSZ (1UL << 13) +#define QUIC_CONN_RX_BUFSZ (1UL << 14) extern struct trace_source trace_quic; extern struct pool_head *pool_head_quic_tx_ring;