]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: Increase the RX buffer for each connection
authorFrédéric Lécaille <flecaille@haproxy.com>
Fri, 17 Dec 2021 13:11:00 +0000 (14:11 +0100)
committerFrédéric Lécaille <flecaille@haproxy.com>
Mon, 20 Dec 2021 16:33:51 +0000 (17:33 +0100)
Double this buffer size which reaches 16ko for now on.

include/haproxy/xprt_quic-t.h

index 51b45871aead03227f02d389f74682cf67e16e88..ddb4d864810ef98b6ac452290dd059f42d9cc461 100644 (file)
@@ -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;