struct rx_settings *settings; /* points to the settings used by this receiver */
struct list proto_list; /* list in the protocol header */
#ifdef USE_QUIC
- struct list qpkts; /* QUIC Initial packets to accept new connections */
+ struct mt_list pkts; /* QUIC Initial packets to accept new connections */
struct eb_root odcids; /* QUIC original destination connection IDs. */
struct eb_root cids; /* QUIC connection IDs. */
#endif
struct quic_rx_packet {
struct list list;
- struct list rx_list;
+ struct mt_list rx_list;
struct quic_conn *qc;
unsigned char type;
uint32_t version;
*/
static void quic_add_listener(struct protocol *proto, struct listener *listener)
{
- LIST_INIT(&listener->rx.qpkts);
+ MT_LIST_INIT(&listener->rx.pkts);
listener->rx.odcids = EB_ROOT_UNIQUE;
listener->rx.cids = EB_ROOT_UNIQUE;
default_add_listener(proto, listener);
int ret;
qc = NULL;
- pkt = LIST_ELEM(l->rx.qpkts.n, struct quic_rx_packet *, rx_list);
+ pkt = MT_LIST_POP(&l->rx.pkts, struct quic_rx_packet *, rx_list);
/* Should never happen. */
- if (&pkt->rx_list == &l->rx.qpkts)
+ if (!pkt)
goto err;
qc = pkt->qc;
- LIST_DELETE(&pkt->rx_list);
if (!new_quic_cli_conn(qc, l, &pkt->saddr))
goto err;
}
else if (!found_conn) {
/* Enqueue this packet. */
- LIST_APPEND(&l->rx.qpkts, &pkt->rx_list);
+ MT_LIST_APPEND(&l->rx.pkts, &pkt->rx_list);
/* Try to accept a new connection. */
listener_accept(l);
}