From: Amaury Denoyelle Date: Mon, 23 May 2022 16:52:11 +0000 (+0200) Subject: MINOR: mux-quic: add traces in qc_recv() X-Git-Tag: v2.6-dev12~133 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1cad8bc03a0ab692d86c60d09962817fe05c637;p=thirdparty%2Fhaproxy.git MINOR: mux-quic: add traces in qc_recv() Just add traces in qc_recv() similarly to qc_send() function. --- diff --git a/src/mux_quic.c b/src/mux_quic.c index f6655f6267..6754d3bd8a 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -1126,6 +1126,8 @@ static int qc_recv(struct qcc *qcc) struct eb64_node *node; struct qcs *qcs; + TRACE_ENTER(QMUX_EV_QCC_RECV); + node = eb64_first(&qcc->streams_by_id); while (node) { qcs = eb64_entry(node, struct qcs, by_id); @@ -1147,6 +1149,7 @@ static int qc_recv(struct qcc *qcc) node = eb64_next(node); } + TRACE_LEAVE(QMUX_EV_QCC_RECV); return 0; }