From: Amaury Denoyelle Date: Tue, 19 Nov 2024 10:01:57 +0000 (+0100) Subject: MINOR: mux-quic: add missing values for show flags X-Git-Tag: v3.1-dev14~92 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4069873403cbb36c9ae7274c6d9bceff7e948b3f;p=thirdparty%2Fhaproxy.git MINOR: mux-quic: add missing values for show flags Add QCC QC_CF_WAIT_FOR_HS and QCS QC_SF_TXBUB_OOB flags to their respective show_flags to be able to decipher them via dev flags utility. These values have been added in the current dev version, thus no need to backport this patch. --- diff --git a/include/haproxy/mux_quic-t.h b/include/haproxy/mux_quic-t.h index fcdd38b9bd..6b2c10e8c5 100644 --- a/include/haproxy/mux_quic-t.h +++ b/include/haproxy/mux_quic-t.h @@ -232,7 +232,8 @@ static forceinline char *qcc_show_flags(char *buf, size_t len, const char *delim _(QC_CF_ERRL_DONE, _(QC_CF_CONN_FULL, _(QC_CF_APP_SHUT, - _(QC_CF_ERR_CONN))))); + _(QC_CF_ERR_CONN, + _(QC_CF_WAIT_FOR_HS)))))); /* epilogue */ _(~0U); return buf; @@ -267,13 +268,14 @@ static forceinline char *qcs_show_flags(char *buf, size_t len, const char *delim _(QC_SF_FIN_STREAM, _(QC_SF_BLK_MROOM, _(QC_SF_DETACH, + _(QC_SF_TXBUB_OOB, _(QC_SF_DEM_FULL, _(QC_SF_READ_ABORTED, _(QC_SF_TO_RESET, _(QC_SF_HREQ_RECV, _(QC_SF_TO_STOP_SENDING, _(QC_SF_UNKNOWN_PL_LENGTH, - _(QC_SF_RECV_RESET))))))))))); + _(QC_SF_RECV_RESET)))))))))))); /* epilogue */ _(~0U); return buf;