From 52e8237bfc66a2a8324dbb558c1f0704aa0f8c0e Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Fri, 23 Jun 2017 00:22:47 +0200 Subject: vtls: use the Curl_ssl struct to access all SSL backends' functionality This is the first step to unify the SSL backend handling. Now all the SSL backend-specific functionality is accessed via a global instance of the Curl_ssl struct. Signed-off-by: Johannes Schindelin --- lib/vtls/cyassl.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/vtls/cyassl.c') diff --git a/lib/vtls/cyassl.c b/lib/vtls/cyassl.c index 995cf629c..58c5d48b5 100644 --- a/lib/vtls/cyassl.c +++ b/lib/vtls/cyassl.c @@ -973,4 +973,6 @@ const struct Curl_ssl Curl_ssl_cyassl = { Curl_none_false_start /* false_start */ }; +const struct Curl_ssl *Curl_ssl = &Curl_ssl_cyassl; + #endif -- cgit v1.2.3