From: Christopher Faulet Date: Tue, 3 Feb 2026 17:32:19 +0000 (+0100) Subject: MINOR: stconn: Add missing SC_FL_NO_FASTFWD flag in sc_show_flags X-Git-Tag: v3.4-dev5~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b1a0b3bae87c2895a3876206af2d93bec210702;p=thirdparty%2Fhaproxy.git MINOR: stconn: Add missing SC_FL_NO_FASTFWD flag in sc_show_flags SC_FL_NO_FASTFWD flag was not listed in sc_show_flags() function. Let's do so. This patch could be backported as far as 3.0. --- diff --git a/include/haproxy/stconn-t.h b/include/haproxy/stconn-t.h index 0b8193711..08cbf1b38 100644 --- a/include/haproxy/stconn-t.h +++ b/include/haproxy/stconn-t.h @@ -224,7 +224,7 @@ static forceinline char *sc_show_flags(char *buf, size_t len, const char *delim, _(SC_FL_NEED_BUFF, _(SC_FL_NEED_ROOM, _(SC_FL_RCV_ONCE, _(SC_FL_SND_ASAP, _(SC_FL_SND_NEVERWAIT, _(SC_FL_SND_EXP_MORE, _(SC_FL_ABRT_WANTED, _(SC_FL_SHUT_WANTED, _(SC_FL_ABRT_DONE, _(SC_FL_SHUT_DONE, - _(SC_FL_EOS, _(SC_FL_HAVE_BUFF)))))))))))))))))))); + _(SC_FL_EOS, _(SC_FL_HAVE_BUFF, _(SC_FL_NO_FASTFWD))))))))))))))))))))); /* epilogue */ _(~0U); return buf;