]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: Duplicated QUIC_RX_BUFSZ definition
authorFrédéric Lécaille <flecaille@haproxy.com>
Thu, 30 Jun 2022 09:25:09 +0000 (11:25 +0200)
committerFrédéric Lécaille <flecaille@haproxy.com>
Thu, 30 Jun 2022 12:24:04 +0000 (14:24 +0200)
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

index 1d530f42aaab70504300a55b63887063d815a6d5..b51779abae29d44f1da5f6de0dc78910143508e2 100644 (file)
@@ -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)