From: Amaury Denoyelle Date: Fri, 17 Nov 2023 15:23:43 +0000 (+0100) Subject: DEBUG: connection/flags: update flags for reverse HTTP X-Git-Tag: v2.9-dev11~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54c94c60d2b625f11a2150649fb408607a7a087e;p=thirdparty%2Fhaproxy.git DEBUG: connection/flags: update flags for reverse HTTP Add missing CO_FL_REVERSED and CO_FL_ACT_REVERSING flag definitions in conn_show_flags(). These flags were introduced in this release with reverse HTTP support. No need to backport --- diff --git a/include/haproxy/connection-t.h b/include/haproxy/connection-t.h index 8081cb3750..afcc8ce51a 100644 --- a/include/haproxy/connection-t.h +++ b/include/haproxy/connection-t.h @@ -172,13 +172,14 @@ static forceinline char *conn_show_flags(char *buf, size_t len, const char *deli /* prologue */ _(0); /* flags */ - _(CO_FL_SAFE_LIST, _(CO_FL_IDLE_LIST, _(CO_FL_CTRL_READY, _(CO_FL_XPRT_READY, + _(CO_FL_SAFE_LIST, _(CO_FL_IDLE_LIST, _(CO_FL_CTRL_READY, + _(CO_FL_REVERSED, _(CO_FL_ACT_REVERSING, _(CO_FL_XPRT_READY, _(CO_FL_WANT_DRAIN, _(CO_FL_WAIT_ROOM, _(CO_FL_EARLY_SSL_HS, _(CO_FL_EARLY_DATA, _(CO_FL_SOCKS4_SEND, _(CO_FL_SOCKS4_RECV, _(CO_FL_SOCK_RD_SH, _(CO_FL_SOCK_WR_SH, _(CO_FL_ERROR, _(CO_FL_FDLESS, _(CO_FL_WAIT_L4_CONN, _(CO_FL_WAIT_L6_CONN, _(CO_FL_SEND_PROXY, _(CO_FL_ACCEPT_PROXY, _(CO_FL_ACCEPT_CIP, _(CO_FL_SSL_WAIT_HS, _(CO_FL_PRIVATE, _(CO_FL_RCVD_PROXY, _(CO_FL_SESS_IDLE, _(CO_FL_XPRT_TRACKED - )))))))))))))))))))))))); + )))))))))))))))))))))))))); /* epilogue */ _(~0U); return buf;