]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
DOC: INSTALL: require at least WolfSSL 5.6.6
authorWilliam Lallemand <wlallemand@haproxy.com>
Fri, 12 Jan 2024 16:48:45 +0000 (17:48 +0100)
committerWilliam Lallemand <wlallemand@haproxy.com>
Fri, 12 Jan 2024 16:48:45 +0000 (17:48 +0100)
WolfSSL 5.6.6 introduces the equivalent of the clienthello callback, so
lets switch to this version.

INSTALL

diff --git a/INSTALL b/INSTALL
index 591b4214e57296fdbca874ad70dd8ee7b32d1b86..18eb67f31153cc7f74ab231016e1d4c3a4f8dd5b 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -281,11 +281,11 @@ SSL library files using SSL_LIB. Example :
     USE_OPENSSL=1 SSL_INC=/opt/ssl-1.1.1/include SSL_LIB=/opt/ssl-1.1.1/lib
 
 To use HAProxy with WolfSSL, WolfSSL must be built with haproxy support, at
-least WolfSSL 5.6.4 is needed, but a development version might be needed for
+least WolfSSL 5.6.6 is needed, but a development version might be needed for
 some of the features:
 
   $ cd ~/build/wolfssl
-  $ ./configure --enable-haproxy --enable-quic --prefix=/opt/wolfssl-5.6.4/
+  $ ./configure --enable-haproxy --enable-quic --prefix=/opt/wolfssl-5.6.6/
   $ make -j $(nproc)
   $ make install
 
@@ -298,7 +298,7 @@ command line, for example:
 
   $ cd ~/build/haproxy
   $ make -j $(nproc) TARGET=generic USE_OPENSSL_WOLFSSL=1 USE_QUIC=1 \
-    SSL_INC=/opt/wolfssl-5.6.4/include SSL_LIB=/opt/wolfssl-5.6.4/lib
+    SSL_INC=/opt/wolfssl-5.6.6/include SSL_LIB=/opt/wolfssl-5.6.6/lib
 
 To use HAProxy with AWS-LC you must have version v1.13.0 or newer of AWS-LC
 built and installed locally.