]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: Attach QUIC mux connection objet to QUIC connection.
authorFrédéric Lécaille <flecaille@haproxy.com>
Thu, 18 Feb 2021 09:16:06 +0000 (10:16 +0100)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 23 Sep 2021 13:27:25 +0000 (15:27 +0200)
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

index ed994659fe9e70824882649cdafa2723ff218f37..d55c36bc15463652d0ec732b9699dd95df4028a9 100644 (file)
@@ -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;
 };