MINOR: mux-quic: add traces in qc_recv()

Just add traces in qc_recv() similarly to qc_send() function.
This commit is contained in:
Amaury Denoyelle 2022-05-23 18:52:11 +02:00
parent 1c25b18e17
commit e1cad8bc03

View File

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