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.
This commit is contained in:
Frédéric Lécaille 2021-02-18 10:16:06 +01:00 committed by Amaury Denoyelle
parent 2abe74f39c
commit 65bc43434a

View 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;
};