From: Frédéric Lécaille Date: Thu, 18 Feb 2021 09:16:06 +0000 (+0100) Subject: MINOR: quic: Attach QUIC mux connection objet to QUIC connection. X-Git-Tag: v2.5-dev8~152 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=65bc43434a9e2fbd25ca336dee38629d7306eb84;p=thirdparty%2Fhaproxy.git MINOR: quic: Attach QUIC mux connection objet to QUIC connection. This add a qcc struct for QUIC mux/demux connection layer to quic_conn struct at low level connection layer. --- diff --git a/include/haproxy/xprt_quic-t.h b/include/haproxy/xprt_quic-t.h index ed994659fe..d55c36bc15 100644 --- a/include/haproxy/xprt_quic-t.h +++ b/include/haproxy/xprt_quic-t.h @@ -628,6 +628,8 @@ struct quic_conn { struct quic_path paths[1]; struct quic_path *path; + /* MUX */ + struct qcc *qcc; struct task *timer_task; unsigned int timer; };