]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CONTRIB: debug: add missing flags SF_HTX and SF_MUX
authorWilly Tarreau <w@1wt.eu>
Thu, 6 Feb 2020 06:57:36 +0000 (07:57 +0100)
committerWilly Tarreau <w@1wt.eu>
Thu, 6 Feb 2020 06:57:36 +0000 (07:57 +0100)
These two were forgotten when HTX was added. They can be backported
as they're missing for debugging traces in 2.0.

contrib/debug/flags.c

index a9ba9a5ae34d0cdae3e962a7561553a9d5f733ce..c5315f4c2a4402e6e6eeae4c2f2b9844154b4dfb 100644 (file)
@@ -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);