From 9475d890ee647251640edb6faca695a163e80e77 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Wed, 4 May 2022 15:24:50 +0200 Subject: [PATCH] MINOR: quic: Congestion controller event trace fix (loss) Missing event type (loss). --- include/haproxy/quic_cc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/haproxy/quic_cc.h b/include/haproxy/quic_cc.h index 54c54d2..b654fff 100644 --- a/include/haproxy/quic_cc.h +++ b/include/haproxy/quic_cc.h @@ -57,7 +57,7 @@ static inline void quic_cc_event_trace(struct buffer *buf, const struct quic_cc_ (unsigned long long)ev->ack.acked, ev->ack.time_sent); break; case QUIC_CC_EVT_LOSS: - chunk_appendf(buf, "now_ms=%u time_sent=%u", now_ms, ev->loss.time_sent); + chunk_appendf(buf, "loss now_ms=%u time_sent=%u", now_ms, ev->loss.time_sent); break; case QUIC_CC_EVT_ECN_CE: chunk_appendf(buf, "ecn_ce"); -- 1.7.10.4