commit | 9fc10aff05462fe88bc117cda20d381dfb2ea9f7 | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Thu Feb 09 20:37:26 2023 +0100 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Fri Feb 17 17:36:30 2023 +0100 |
tree | 4f6ba771d26455f75da1e8638c2c31f68e1e88d3 | |
parent | 14037bf26f23a8deb6c11da0c917e838758cb01b [diff] |
BUG/MINOR: quic: Possible unexpected counter incrementation on send*() errors Some counters could potentially be incremented even if send*() syscall returned no error when ret >= 0 and ret != sz. This could be the case for instance if a first call to send*() returned -1 with errno set to EINTR (or any previous syscall which set errno to a non-null value) and if the next call to send*() returned something positive and smaller than <sz>. Must be backported to 2.7 and 2.6.