mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-28 04:12:17 -04:00
MINOR: quic: Add idle timer task pointer to traces
Helpful to detect if this timer was freed or not.
This commit is contained in:
parent
4cfae3ac01
commit
b48abf0beb
1 changed files with 2 additions and 1 deletions
|
|
@ -111,7 +111,8 @@ static void quic_trace(enum trace_level level, uint64_t mask, const struct trace
|
|||
if (qc) {
|
||||
const struct quic_tls_ctx *tls_ctx;
|
||||
|
||||
chunk_appendf(&trace_buf, " : qc@%p flags=0x%x", qc, qc->flags);
|
||||
chunk_appendf(&trace_buf, " : qc@%p idle_timer_task@%p flags=0x%x",
|
||||
qc, qc->idle_timer_task, qc->flags);
|
||||
if (mask & QUIC_EV_CONN_INIT) {
|
||||
chunk_appendf(&trace_buf, "\n odcid");
|
||||
quic_cid_dump(&trace_buf, &qc->odcid);
|
||||
|
|
|
|||
Loading…
Reference in a new issue