mirror of
https://github.com/haproxy/haproxy.git
synced 2026-07-16 12:23:15 -04: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
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Reference in a new issue