From: Willy Tarreau Date: Thu, 6 Feb 2020 06:57:36 +0000 (+0100) Subject: CONTRIB: debug: add missing flags SF_HTX and SF_MUX X-Git-Tag: v2.2-dev2~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8a0eabd536ca1354e2f24fcb7810042f31751010;p=thirdparty%2Fhaproxy.git CONTRIB: debug: add missing flags SF_HTX and SF_MUX These two were forgotten when HTX was added. They can be backported as they're missing for debugging traces in 2.0. --- diff --git a/contrib/debug/flags.c b/contrib/debug/flags.c index a9ba9a5ae3..c5315f4c2a 100644 --- a/contrib/debug/flags.c +++ b/contrib/debug/flags.c @@ -347,7 +347,9 @@ void show_strm_flags(unsigned int f) case SF_ERR_CHK_PORT: f &= ~SF_ERR_MASK ; printf("SF_ERR_CHK_PORT%s", f ? " | " : ""); break; } + SHOW_FLAG(f, SF_HTX); SHOW_FLAG(f, SF_REDIRECTABLE); + SHOW_FLAG(f, SF_IGNORE); SHOW_FLAG(f, SF_REDISP); SHOW_FLAG(f, SF_CURR_SESS); SHOW_FLAG(f, SF_MONITOR);