MINOR: quic: Move quic_rxbuf_pool pool out of xprt part
This pool could be confuse with that of the RX buffer pool for the connection
(quic_conn_rxbuf).
diff --git a/src/proto_quic.c b/src/proto_quic.c
index e3ea509..a0b4147 100644
--- a/src/proto_quic.c
+++ b/src/proto_quic.c
@@ -50,6 +50,11 @@
/* per-thread quic datagram handlers */
struct quic_dghdlr *quic_dghdlrs;
+/* Size of the internal buffer of QUIC RX buffer at the fd level */
+#define QUIC_RX_BUFSZ (1UL << 18)
+
+DECLARE_STATIC_POOL(pool_head_quic_rxbuf, "quic_rxbuf_pool", QUIC_RX_BUFSZ);
+
static void quic_add_listener(struct protocol *proto, struct listener *listener);
static int quic_bind_listener(struct listener *listener, char *errmsg, int errlen);
static int quic_connect_server(struct connection *conn, int flags);