From e4c3074c0000dc09ea3827cc0f41b517dd596d2c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Fri, 19 Aug 2022 12:02:29 +0200 Subject: [PATCH] MINOR: quic: Add the QUIC connection to mux traces This should help for debugging purpose. Should be backported to 2.6 --- src/mux_quic.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mux_quic.c b/src/mux_quic.c index a2814c7b58..e29fa1ccd4 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -2367,6 +2367,8 @@ static void qmux_trace(enum trace_level level, uint64_t mask, if (src->verbosity > QMUX_VERB_CLEAN) { chunk_appendf(&trace_buf, " : qcc=%p(F)", qcc); + if (qcc->conn->handle.qc) + chunk_appendf(&trace_buf, " qc=%p", qcc->conn->handle.qc); if (qcs) chunk_appendf(&trace_buf, " qcs=%p .id=%llu .st=%s", -- 2.47.3