BUG/MINOR: stconn: Increase SC bytes_out value in se_done_ff()
Some checks are pending
Contrib / build (push) Waiting to run
alpine/musl / gcc (push) Waiting to run
VTest / Generate Build Matrix (push) Waiting to run
VTest / (push) Blocked by required conditions
Windows / Windows, gcc, all features (push) Waiting to run

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.
This commit is contained in:
Christopher Faulet 2026-03-05 16:07:58 +01:00
parent fcfabd0d90
commit b48c9a1465

View file

@ -525,7 +525,7 @@ static inline size_t se_done_ff(struct sedesc *se)
}
}
}
se->sc->bytes_out += ret;
return ret;
}