]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CONTRIB: debug: add the missing flags CO_FL_SAFE_LIST and CO_FL_IDLE_LIST
authorWilly Tarreau <w@1wt.eu>
Fri, 19 Jun 2020 06:47:30 +0000 (08:47 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 19 Jun 2020 12:21:46 +0000 (14:21 +0200)
As often when flags are added they're not updated here. These ones were
missing. They're 2.2 only so no backport is needed.

contrib/debug/flags.c

index e1dfee97858c4ad733c96fb6096cb100c9b102e9..e958f97d4f1edf9849b3dc7024e86fb680887064 100644 (file)
@@ -165,6 +165,8 @@ void show_conn_flags(unsigned int f)
        SHOW_FLAG(f, CO_FL_WAIT_ROOM);
        SHOW_FLAG(f, CO_FL_XPRT_READY);
        SHOW_FLAG(f, CO_FL_CTRL_READY);
+       SHOW_FLAG(f, CO_FL_IDLE_LIST);
+       SHOW_FLAG(f, CO_FL_SAFE_LIST);
 
        if (f) {
                printf("EXTRA(0x%08x)", f);