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.
This commit is contained in:
Frédéric Lécaille 2022-01-26 15:55:21 +01:00 committed by Amaury Denoyelle
parent ce521e4f15
commit 53898bba81
2 changed files with 2 additions and 0 deletions

View File

@ -616,6 +616,7 @@ struct qring {
/* QUIC RX buffer */
struct rxbuf {
struct buffer buf;
struct list dgrams;
struct mt_list mt_list;
};

View File

@ -591,6 +591,7 @@ static int quic_alloc_rxbufs_listener(struct listener *l)
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);
}