MINOR: quic: Add a list to QUIC sock I/O handler RX buffer

This list will be used to store datagrams in the rxbuf struct used
by the quic_sock_fd_iocb() QUIC sock I/O handler with one rxbuf by thread.
diff --git a/include/haproxy/xprt_quic-t.h b/include/haproxy/xprt_quic-t.h
index 0ed818a..6e22fe1 100644
--- a/include/haproxy/xprt_quic-t.h
+++ b/include/haproxy/xprt_quic-t.h
@@ -616,6 +616,7 @@
 /* QUIC RX buffer */
 struct rxbuf {
 	struct buffer buf;
+	struct list dgrams;
 	struct mt_list mt_list;
 };
 
diff --git a/src/proto_quic.c b/src/proto_quic.c
index 4307cee..c12c8e1 100644
--- a/src/proto_quic.c
+++ b/src/proto_quic.c
@@ -591,6 +591,7 @@
 			goto err;
 
 		rxbuf->buf = b_make(buf, QUIC_RX_BUFSZ, 0, 0);
+		LIST_INIT(&rxbuf->dgrams);
 		MT_LIST_APPEND(&l->rx.rxbuf_list, &rxbuf->mt_list);
 	}