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.
This commit is contained in:
Christopher Faulet 2026-04-23 10:43:36 +02:00
parent 98e1ff7f2c
commit 2a49386eea

View File

@ -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;