mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2026-05-04 20:46:11 +02:00
MINOR: mux-quic: add traces in qc_recv()
Just add traces in qc_recv() similarly to qc_send() function.
This commit is contained in:
parent
1c25b18e17
commit
e1cad8bc03
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user