diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2017-07-15 13:49:30 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-28 14:56:58 +0200 |
commit | b59288f88146b64ac5fda296675c523df11658b8 (patch) | |
tree | 844aecc8b3c588584731b31b0043a9e9e6ac894c /include | |
parent | b0989cd3abaff4f9a0717b4875022fa79e33b481 (diff) | |
download | curl-b59288f88146b64ac5fda296675c523df11658b8.tar.gz |
vtls: refactor out essential information about the SSL backends
There is information about the compiled-in SSL backends that is really
no concern of any code other than the SSL backend itself, such as which
function (if any) implements SHA-256 summing.
And there is information that is really interesting to the user, such as
the name, or the curl_sslbackend value.
Let's factor out the latter into a publicly visible struct. This
information will be used in the upcoming API to set the SSL backend
globally.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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 3936d1e43..146044398 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -2540,6 +2540,11 @@ CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask); #define CURLPAUSE_ALL (CURLPAUSE_RECV|CURLPAUSE_SEND) #define CURLPAUSE_CONT (CURLPAUSE_RECV_CONT|CURLPAUSE_SEND_CONT) +typedef struct { + curl_sslbackend id; + const char *name; +} curl_ssl_backend; + #ifdef __cplusplus } #endif |