From: Willy Tarreau Date: Mon, 25 Mar 2019 17:34:28 +0000 (+0100) Subject: CONTRIB: debug: report the CS and CF's EOI flags X-Git-Tag: v2.0-dev2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f882a85da4d56fba7db1c8b118df87225cd272e8;p=thirdparty%2Fhaproxy.git CONTRIB: debug: report the CS and CF's EOI flags These ones indicate an end of input. --- diff --git a/contrib/debug/flags.c b/contrib/debug/flags.c index 9e9b3f768c..c1a804742b 100644 --- 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);