projects
/
haproxy-3.0.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d75bc06
)
BUILD: ssl: add 'ssl_c_r_dn' fetch for WolfSSL
author
William Lallemand
<wlallemand@haproxy.com>
Mon, 9 Oct 2023 13:09:47 +0000
(15:09 +0200)
committer
William Lallemand
<wlallemand@haproxy.com>
Mon, 9 Oct 2023 13:09:47 +0000
(15:09 +0200)
WolfSSL supports SSL_get0_verified_chain() so we can activate this
feature.
include/haproxy/openssl-compat.h
patch
|
blob
|
history
diff --git
a/include/haproxy/openssl-compat.h
b/include/haproxy/openssl-compat.h
index
e2a48bb
..
50344e6
100644
(file)
--- a/
include/haproxy/openssl-compat.h
+++ b/
include/haproxy/openssl-compat.h
@@
-104,7
+104,7
@@
#endif
/* minimum OpenSSL 1.1.1 & libreSSL 3.3.6 */
-#if (defined(LIBRESSL_VERSION_NUMBER) && (LIBRESSL_VERSION_NUMBER >= 0x3030600L)) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
+#if (defined(LIBRESSL_VERSION_NUMBER) && (LIBRESSL_VERSION_NUMBER >= 0x3030600L)) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) || defined(USE_OPENSSL_WOLFSSL)
#define HAVE_SSL_get0_verified_chain
#endif