commit | 1d9f170eddd8703ba550e91322298e88e8280075 | [log] [tgz] |
---|---|---|
author | Amaury Denoyelle <adenoyelle@haproxy.com> | Mon Oct 24 10:03:33 2022 +0200 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Mon Oct 24 10:18:44 2022 +0200 |
tree | c8eb907b714fa5fa07f95b4667859e788547bbc2 | |
parent | 910b7577bce977ee08068f22df7a5d824ae4155c [diff] |
MINOR: quic: do not crash on unhandled sendto error Remove ABORT_NOW() statement on unhandled sendto error. Instead use a dedicated counter sendto_err_unknown to report these cases. If we detect increment of this counter, strace can be used to detect errno value : $ strace -p $(pidof haproxy) -f -e trace=sendto -Z This should be backported up to 2.6. This should help to debug github issue #1903.