From 936c135e05ccee7efdbcf6a5adae37b8c1770b9a Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Mon, 14 Nov 2022 17:14:41 +0100 Subject: [PATCH] DOC: configuration: fix quic prefix typo Replace quicv4/quicv6 -> quic4/quic6 as prefix for bind lines of QUIC listeners. This should be backported up to 2.6. --- doc/configuration.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/configuration.txt b/doc/configuration.txt index 2a951c3e76..36d7386374 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -4559,10 +4559,10 @@ bind / [, ...] [param*] connected unix socket or of a socketpair. The bind waits to receive a FD over the unix socket and uses it as if it was the FD of an accept(). Should be used carefully. - - 'quicv4@' -> address is resolved as IPv4 and protocol - UDP is used. - - 'quicv6@' -> address is resolved as IPv6 and protocol - UDP is used. + - 'quic4@' -> address is resolved as IPv4 and protocol UDP + is used. + - 'quic6@' -> address is resolved as IPv6 and protocol UDP + is used. You may want to reference some environment variables in the address parameter, see section 2.3 about environment @@ -4627,7 +4627,7 @@ bind / [, ...] [param*] bind "fd@${FD_APP1}" listen h3_quic_proxy - bind quic@10.0.0.1:8888 ssl crt /etc/mycrt alpn h3 + bind quic4@10.0.0.1:8888 ssl crt /etc/mycrt alpn h3 Note: regarding Linux's abstract namespace sockets, HAProxy uses the whole sun_path length is used for the address length. Some other programs -- 2.47.3