diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-08-27 12:46:43 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-08-28 14:13:05 +0200 |
commit | 68a51324740945f1da9758bc1d26bbe4835bd847 (patch) | |
tree | 529e597f750ae3918ee5ad7e905e26e76c149f3a /docs | |
parent | c77f6fd1cb19015c5e728235af860f09636fefbd (diff) | |
download | curl-68a51324740945f1da9758bc1d26bbe4835bd847.tar.gz |
TLS: fix SRP detection by using the proper #ifdefs
USE_TLS_SRP will be true if *any* selected TLS backend can use SRP
HAVE_OPENSSL_SRP is defined when OpenSSL can use it
HAVE_GNUTLS_SRP is defined when GnuTLS can use it
Clarify in the curl_verison_info docs that CURL_VERSION_TLSAUTH_SRP is
set if at least one of the supported backends offers SRP.
Reported-by: Stefan Strogin
Fixes #5865
Closes #5870
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libcurl/curl_version_info.3 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/libcurl/curl_version_info.3 b/docs/libcurl/curl_version_info.3 index 9be46f7bd..5c5f16a3d 100644 --- a/docs/libcurl/curl_version_info.3 +++ b/docs/libcurl/curl_version_info.3 @@ -192,7 +192,8 @@ makes libcurl use Windows-provided functions for Kerberos, NTLM, SPNEGO and Digest authentication. It also allows libcurl to use the current user credentials without the app having to pass them on. (Added in 7.13.2) .IP CURL_VERSION_TLSAUTH_SRP -libcurl was built with support for TLS-SRP. (Added in 7.21.4) +libcurl was built with support for TLS-SRP (in one or more of the built-in TLS +backends). (Added in 7.21.4) .IP CURL_VERSION_UNIX_SOCKETS libcurl was built with support for Unix domain sockets. (Added in 7.40.0) |