From 1ca14950e6b6de8d200726a03258c398446846e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Thu, 30 Jun 2022 11:25:09 +0200 Subject: [PATCH] MINOR: quic: Duplicated QUIC_RX_BUFSZ definition This macro is already defined in src/quic_sock.c which is the correct place. Must be backported to 2.6 --- include/haproxy/xprt_quic-t.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/haproxy/xprt_quic-t.h b/include/haproxy/xprt_quic-t.h index 1d530f42aa..b51779abae 100644 --- a/include/haproxy/xprt_quic-t.h +++ b/include/haproxy/xprt_quic-t.h @@ -257,8 +257,6 @@ enum quic_pkt_type { /* Size of the internal buffer of QUIC TX ring buffers (must be a power of 2) */ #define QUIC_TX_RING_BUFSZ (1UL << 12) -/* 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 << 14) -- 2.47.3