projects
/
haproxy-2.1.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a27db38
)
CONTRIB: debug: report the CS and CF's EOI flags
author
Willy Tarreau
<w@1wt.eu>
Mon, 25 Mar 2019 17:34:28 +0000
(18:34 +0100)
committer
Willy Tarreau
<w@1wt.eu>
Mon, 25 Mar 2019 17:34:28 +0000
(18:34 +0100)
These ones indicate an end of input.
contrib/debug/flags.c
patch
|
blob
|
history
diff --git
a/contrib/debug/flags.c
b/contrib/debug/flags.c
index
9e9b3f7
..
c1a8047
100644
(file)
--- a/
contrib/debug/flags.c
+++ b/
contrib/debug/flags.c
@@
-71,6
+71,7
@@
void show_chn_flags(unsigned int f)
}
SHOW_FLAG(f, CF_ISRESP);
+ SHOW_FLAG(f, CF_EOI);
SHOW_FLAG(f, CF_FLT_ANALYZE);
SHOW_FLAG(f, CF_WAKE_ONCE);
SHOW_FLAG(f, CF_NEVER_WAIT);
@@
-158,6
+159,7
@@
void show_cs_flags(unsigned int f)
}
SHOW_FLAG(f, CS_FL_NOT_FIRST);
SHOW_FLAG(f, CS_FL_WAIT_FOR_HS);
+ SHOW_FLAG(f, CS_FL_EOI);
SHOW_FLAG(f, CS_FL_REOS);
SHOW_FLAG(f, CS_FL_EOS);
SHOW_FLAG(f, CS_FL_ERR_PENDING);