]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: mux_quic/flags: add missing flags
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 28 May 2026 13:49:21 +0000 (15:49 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 28 May 2026 15:36:05 +0000 (17:36 +0200)
Add missing mux QUIC values for the dev flags utility, both for qcc and
qcs types.

include/haproxy/mux_quic-t.h

index 93b756c9c323de48abc2986eedc6faf4a5fafdc6..78cc5041ba27d303415eff5200fe9a8f4a2db239 100644 (file)
@@ -286,9 +286,11 @@ static forceinline char *qcc_show_flags(char *buf, size_t len, const char *delim
        /* flags */
        _(QC_CF_ERRL,
        _(QC_CF_ERRL_DONE,
+       _(QC_CF_IS_BACK,
        _(QC_CF_CONN_FULL,
+       _(QC_CF_CONN_SHUT,
        _(QC_CF_ERR_CONN,
-       _(QC_CF_WAIT_HS)))));
+       _(QC_CF_WAIT_HS)))))));
        /* epilogue */
        _(~0U);
        return buf;
@@ -331,7 +333,8 @@ static forceinline char *qcs_show_flags(char *buf, size_t len, const char *delim
        _(QC_SF_HREQ_RECV,
        _(QC_SF_TO_STOP_SENDING,
        _(QC_SF_UNKNOWN_PL_LENGTH,
-       _(QC_SF_RECV_RESET))))))))))));
+       _(QC_SF_RECV_RESET,
+       _(QC_SF_EOI_SUSPENDED)))))))))))));
        /* epilogue */
        _(~0U);
        return buf;