mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
CONTRIB: debug/flags: add check for SF_ERR_CHK_PORT
This flag was added by commit 95db2bc ("MAJOR: check: find out which
port to use for health check at run time"), let's check for it.
This commit is contained in:
parent
b01b3ada6b
commit
a7da4d24f5
1 changed files with 1 additions and 0 deletions
|
|
@ -320,6 +320,7 @@ void show_strm_flags(unsigned int f)
|
|||
case SF_ERR_DOWN: f &= ~SF_ERR_MASK ; printf("SF_ERR_DOWN%s", f ? " | " : ""); break;
|
||||
case SF_ERR_KILLED: f &= ~SF_ERR_MASK ; printf("SF_ERR_KILLED%s", f ? " | " : ""); break;
|
||||
case SF_ERR_UP: f &= ~SF_ERR_MASK ; printf("SF_ERR_UP%s", f ? " | " : ""); break;
|
||||
case SF_ERR_CHK_PORT: f &= ~SF_ERR_MASK ; printf("SF_ERR_CHK_PORT%s", f ? " | " : ""); break;
|
||||
}
|
||||
|
||||
SHOW_FLAG(f, SF_TUNNEL);
|
||||
|
|
|
|||
Loading…
Reference in a new issue