diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-04-25 11:35:12 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-04-25 11:37:40 +0200 |
commit | 56fb8a1f1199bc9ce666c983c72838f7d1b2d603 (patch) | |
tree | d169a8d0c06ca70fd3142d3c98b635b5c76ce487 /include | |
parent | 224238491102ec54173eb1e3e3b5cfe16806a770 (diff) | |
download | curl-56fb8a1f1199bc9ce666c983c72838f7d1b2d603.tar.gz |
curl.h: clarify curl_sslbackend for openssl clones and renames
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 5b5d72349..57e716b3e 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -2125,6 +2125,11 @@ typedef enum { CURLSSLBACKEND_MBEDTLS = 11 } curl_sslbackend; +/* aliases for library clones and renames */ +#define CURLSSLBACKEND_LIBRESSL 1 +#define CURLSSLBACKEND_BORINGSSL 1 +#define CURLSSLBACKEND_WOLFSSL 6 + /* Information about the SSL library used and the respective internal SSL handle, which can be used to obtain further information regarding the connection. Asked for with CURLINFO_TLS_SSL_PTR or CURLINFO_TLS_SESSION. */ |