From 65bc43434a9e2fbd25ca336dee38629d7306eb84 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Thu, 18 Feb 2021 10:16:06 +0100 Subject: [PATCH] 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. --- include/haproxy/xprt_quic-t.h | 2 ++ 1 file changed, 2 insertions(+) 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; }; -- 2.47.3