diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2017-08-18 08:51:24 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-28 22:56:49 +0200 |
commit | 9d96a5f0b58a31f481be229b19496728d3c55cbb (patch) | |
tree | de72bf6771c62e007ac63a91699c44a4ef3840b8 /include | |
parent | b180a273fab64b601e7f44a36a0ec8bd5363e8e1 (diff) | |
download | curl-9d96a5f0b58a31f481be229b19496728d3c55cbb.tar.gz |
version: add the CURL_VERSION_MULTI_SSL feature flag
This new feature flag reports When cURL was built with multiple SSL
backends.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 3936d1e43..710e4beff 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -2487,6 +2487,7 @@ typedef struct { #define CURL_VERSION_PSL (1<<20) /* Mozilla's Public Suffix List, used for cookie domain verification */ #define CURL_VERSION_HTTPS_PROXY (1<<21) /* HTTPS-proxy support built-in */ +#define CURL_VERSION_MULTI_SSL (1<<22) /* Multiple SSL backends available */ /* * NAME curl_version_info() |