From: Christopher Faulet Date: Thu, 16 May 2024 15:29:16 +0000 (+0200) Subject: CLEANUP: mux-h1: Remove unused H1S_F_ERROR_MASK mask value X-Git-Tag: v3.0-dev12~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1a2699d5f7fb4dec1a0d88c9883a5294a9e3d533;p=thirdparty%2Fhaproxy.git CLEANUP: mux-h1: Remove unused H1S_F_ERROR_MASK mask value This mask value is unused, so we can safely remove it. It is a chance because its value was wrong. But there is no bug here, even in stable versions, because it is no longer used in all versions. --- diff --git a/include/haproxy/mux_h1-t.h b/include/haproxy/mux_h1-t.h index 4cbb3fdc3c..e0c29c25e2 100644 --- a/include/haproxy/mux_h1-t.h +++ b/include/haproxy/mux_h1-t.h @@ -99,7 +99,6 @@ static forceinline char *h1c_show_flags(char *buf, size_t len, const char *delim #define H1S_F_NOT_IMPL_ERROR 0x00000400 /* Set when a feature is not implemented during the message parsing */ #define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */ #define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */ -#define H1S_F_ERROR_MASK 0x00003800 /* stream error mask */ #define H1S_F_HAVE_SRV_NAME 0x00002000 /* Set during output process if the server name header was added to the request */ #define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */