]> git.ipfire.org Git - thirdparty/haproxy.git/commit
BUG/MINOR: quic: remove startup alert if conn socket-owner unsupported
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Wed, 4 Dec 2024 15:25:03 +0000 (16:25 +0100)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 5 Dec 2024 10:30:12 +0000 (11:30 +0100)
commit6fed219fd786f3fdca155f686cf2fa2f9e572697
treea06a9e3a4b377cdef6b0ffa2a2ca69788182984e
parent08f557f0c4e37ad69b6d55a247cbc9f89ddee995
BUG/MINOR: quic: remove startup alert if conn socket-owner unsupported

QUIC relies on several advanced network API features from the kernel to
perform optimally. Checks are performed during startup to ensure that
these features are supported. A fallback is automatically performed for
every incompatible feature.

Besides the automatic fallback mechanism, a message is also reported to
the user at the same time. Previously, alert level was used, but it is
incorrect as it is reserved for unrecoverable errors which should
prevent haproxy to start. Warning level could be used, but this can
annoy users running with zero-warning mode.

This patch removes the alert message when 'socket-owner connection' mode
cannot be activated. Convert the message to a diag level. This allows
users to start without forcing configuration modification to hide a
warning. Besides, several feature fallback such as the polling mechanism
does not emit any warning either, so it's better to adopt a similar
behavior for QUIC features.

This must be backported up to 2.8.
src/proto_quic.c