From b48c9a14656272b7167752286ca6c21dd9a918c5 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Thu, 5 Mar 2026 16:07:58 +0100 Subject: [PATCH] BUG/MINOR: stconn: Increase SC bytes_out value in se_done_ff() When data are sent via the zero-copy data forwarding, we must not forget to increase the stconn bytes_out value. This patch must be backport to 3.3. --- include/haproxy/stconn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/haproxy/stconn.h b/include/haproxy/stconn.h index 5a906e623..73e94c8f7 100644 --- a/include/haproxy/stconn.h +++ b/include/haproxy/stconn.h @@ -525,7 +525,7 @@ static inline size_t se_done_ff(struct sedesc *se) } } } - + se->sc->bytes_out += ret; return ret; }