diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-07-31 12:19:51 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-07-31 12:19:51 +0200 |
commit | a439e438f3662f12c003bda3c8cc3f6de09b4da0 (patch) | |
tree | 953d5cb7766efbcc4e63f47caa420a9e4a303a41 /include | |
parent | 028a408d57cfcc891b9b88f1d56bc130980e11d0 (diff) | |
download | curl-a439e438f3662f12c003bda3c8cc3f6de09b4da0.tar.gz |
ssl: generalize how the ssl backend identifier is set
Each backend now defines CURL_SSL_BACKEND accordingly. Added the *AXTLS
one which was missing previously.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index ebcd07a00..d40b2dbbf 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -2033,7 +2033,8 @@ typedef enum { CURLSSLBACKEND_POLARSSL = 6, CURLSSLBACKEND_CYASSL = 7, CURLSSLBACKEND_SCHANNEL = 8, - CURLSSLBACKEND_DARWINSSL = 9 + CURLSSLBACKEND_DARWINSSL = 9, + CURLSSLBACKEND_AXTLS = 10 } curl_sslbackend; /* Information about the SSL library used and the respective internal SSL |