From e09bb63ed8e7d1a7448c42078d511f44bc4c258c Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 22 Jun 2017 16:45:34 +0200 Subject: vtls: declare Curl_ssl structs for every SSL backend The idea of introducing the Curl_ssl struct was to unify how the SSL backends are declared and called. To this end, we now provide an instance of the Curl_ssl struct for each and every SSL backend. Signed-off-by: Johannes Schindelin --- lib/vtls/schannel.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/vtls/schannel.h') diff --git a/lib/vtls/schannel.h b/lib/vtls/schannel.h index bd12b952d..0ea30c209 100644 --- a/lib/vtls/schannel.h +++ b/lib/vtls/schannel.h @@ -95,6 +95,8 @@ size_t Curl_schannel_version(char *buffer, size_t size); CURLcode Curl_schannel_random(struct Curl_easy *data, unsigned char *entropy, size_t length); +extern const struct Curl_ssl Curl_ssl_schannel; + /* Set the API backend definition to Schannel */ #define CURL_SSL_BACKEND CURLSSLBACKEND_SCHANNEL -- cgit v1.2.3