mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-28 04:12:17 -04:00
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.
This commit is contained in:
parent
fcfabd0d90
commit
b48c9a1465
1 changed files with 1 additions and 1 deletions
|
|
@ -525,7 +525,7 @@ static inline size_t se_done_ff(struct sedesc *se)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
se->sc->bytes_out += ret;
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue