From: Christopher Faulet Date: Thu, 23 Apr 2026 08:43:36 +0000 (+0200) Subject: BUG/MINOR: stream: Add SF_TXN_HTTP/SF_TXN_PCLI flags in strm_show_flags() X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=2a49386eeaedf17ffe48539c11f0feb26038d1db;p=thirdparty%2Fhaproxy.git BUG/MINOR: stream: Add SF_TXN_HTTP/SF_TXN_PCLI flags in strm_show_flags() These flags were missing in strm_show_flags(). So let's add them. No backport needed. --- diff --git a/include/haproxy/stream-t.h b/include/haproxy/stream-t.h index 47df4c2bb..e39167ba0 100644 --- a/include/haproxy/stream-t.h +++ b/include/haproxy/stream-t.h @@ -128,6 +128,8 @@ static forceinline char *strm_show_flags(char *buf, size_t len, const char *deli _(SF_MONITOR, _(SF_CURR_SESS, _(SF_CONN_EXP, _(SF_REDISP, _(SF_IGNORE, _(SF_REDIRECTABLE, _(SF_HTX)))))))))))); + _e(SF_TXN_MASK, SF_TXN_HTTP, _e(SF_TXN_MASK, SF_TXN_PCLI)); + /* epilogue */ _(~0U); return buf;