diff options
Diffstat (limited to 'lib/vtls/vtls.h')
-rw-r--r-- | lib/vtls/vtls.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/vtls/vtls.h b/lib/vtls/vtls.h index 7d2296952..3c8e32104 100644 --- a/lib/vtls/vtls.h +++ b/lib/vtls/vtls.h @@ -27,8 +27,11 @@ struct connectdata; struct ssl_connect_data; struct Curl_ssl { - const char *name; - int id; /* one of the CURLSSLBACKEND_* constants */ + /* + * This *must* be the first entry to allow returning the list of available + * backends in curl_global_sslset(). + */ + curl_ssl_backend info; unsigned have_ca_path:1; /* supports CAPATH */ unsigned have_certinfo:1; /* supports CURLOPT_CERTINFO */ |