mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-22 22:31:28 +02:00
MINOR: quic: Add the number of TX bytes to traces
This should be helpful to diagnose some issues regarding packet loss and recovery issues.
This commit is contained in:
parent
cba4cd427e
commit
8b6ea17105
@ -305,7 +305,9 @@ static void quic_trace(enum trace_level level, uint64_t mask, const struct trace
|
||||
chunk_appendf(&trace_buf, " pn=%llu",(ull)pkt->pn_node.key);
|
||||
list_for_each_entry(frm, &pkt->frms, list)
|
||||
chunk_frm_appendf(&trace_buf, frm);
|
||||
chunk_appendf(&trace_buf, " tx.bytes=%llu", (unsigned long long)qc->tx.bytes);
|
||||
chunk_appendf(&trace_buf, " rx.bytes=%llu tx.bytes=%llu",
|
||||
(unsigned long long)qc->rx.bytes,
|
||||
(unsigned long long)qc->tx.bytes);
|
||||
}
|
||||
|
||||
if (room) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user