Fix unit tests with libressl 3.4.1

pull/48/head
Soner Tari 3 years ago
parent fe3bdc5dac
commit 923bea195a

@ -1,8 +1,9 @@
### SSLproxy 0.9.2 2021-11-13
### SSLproxy 0.9.2 2021-11-14
- Update with the license change of the Aho Corasick library to the LGPL.
- Migrate to travis-ci.com.
- Various fixes and improvements.

@ -94,7 +94,7 @@ static char *argv14[] = {
#define NATENGINE "pf"
#endif
#if (OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER))
#if OPENSSL_VERSION_NUMBER >= 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x3040100fL)
#ifdef HAVE_TLSV13
#define SSL_PROTO_CONFIG_PROXYSPEC "tls13 -tls13>=tls11<=tls12|no sslcomp|no_tls13"
#define SSL_PROTO_CONFIG_FILTERRULE "tls13 -tls13>=tls10<=tls11|no_tls13"

Loading…
Cancel
Save