projects
/
haproxy-3.0.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d02ffe9
)
CONTRIB: debug: add missing flags SF_HTX and SF_MUX
author
Willy Tarreau
<w@1wt.eu>
Thu, 6 Feb 2020 06:57:36 +0000
(07:57 +0100)
committer
Willy 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
patch
|
blob
|
history
diff --git
a/contrib/debug/flags.c
b/contrib/debug/flags.c
index
a9ba9a5
..
c5315f4
100644
(file)
--- 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);