From: Frédéric Lécaille Date: Wed, 4 May 2022 13:24:50 +0000 (+0200) Subject: MINOR: quic: Congestion controller event trace fix (loss) X-Git-Tag: v2.6-dev10~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9475d890ee647251640edb6faca695a163e80e77;p=thirdparty%2Fhaproxy.git MINOR: quic: Congestion controller event trace fix (loss) Missing event type (loss). --- diff --git a/include/haproxy/quic_cc.h b/include/haproxy/quic_cc.h index 54c54d2d80..b654fffdfe 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");