From fb828a471115ba1658f37989e52997eb829cfa41 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Thu, 28 May 2026 15:49:21 +0200 Subject: [PATCH] MINOR: mux_quic/flags: add missing flags Add missing mux QUIC values for the dev flags utility, both for qcc and qcs types. --- include/haproxy/mux_quic-t.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/haproxy/mux_quic-t.h b/include/haproxy/mux_quic-t.h index 93b756c9c..78cc5041b 100644 --- a/include/haproxy/mux_quic-t.h +++ b/include/haproxy/mux_quic-t.h @@ -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;