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.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=e1cad8bc03a0ab692d86c60d09962817fe05c637;p=haproxy.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 f6655f626..6754d3bd8 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; }