MINOR: mux_quic: add minimal traces for QUIC MUX init/release

Add user traces in qcm_init() and qcc_release(). This is useful to be
able to quickly account connection allocation/release without using the
developer trace level.
This commit is contained in:
Amaury Denoyelle 2026-06-24 15:51:32 +02:00
parent ea54d3fd1b
commit 8288e68f44

View file

@ -3676,6 +3676,7 @@ static void qcc_release(struct qcc *qcc)
offer_buffers(NULL, 2);
}
TRACE_USER("release mux", QMUX_EV_QCC_END, conn);
pool_free(pool_head_qcc, qcc);
if (conn) {
@ -4144,6 +4145,7 @@ static int qcm_init(struct connection *conn, struct proxy *prx,
qcc->tot_sc++;
}
TRACE_USER("init mux", QMUX_EV_QCC_NEW, conn);
TRACE_LEAVE(QMUX_EV_QCC_NEW, conn);
return 0;