]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: Congestion controller event trace fix (loss)
authorFrédéric Lécaille <flecaille@haproxy.com>
Wed, 4 May 2022 13:24:50 +0000 (15:24 +0200)
committerFrédéric Lécaille <flecaille@haproxy.com>
Thu, 12 May 2022 13:30:14 +0000 (15:30 +0200)
Missing event type (loss).

include/haproxy/quic_cc.h

index 54c54d2d800d20771ea1ed85f3c1908917151f77..b654fffdfe5c35a5a9934f727335bf476ae7b600 100644 (file)
@@ -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");