From 937899a3b8e1124df7a66b83925349d5c9f9e5a9 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 20 Jun 2017 11:32:53 +0200 Subject: vtls: convert the have_curlssl_* constants to runtime flags The entire idea of introducing the Curl_ssl struct to describe SSL backends is to prepare for choosing the SSL backend at runtime. To that end, convert all the #ifdef have_curlssl_* style conditionals to use bit flags instead. Signed-off-by: Johannes Schindelin --- lib/vtls/axtls.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/vtls/axtls.c') diff --git a/lib/vtls/axtls.c b/lib/vtls/axtls.c index 3446dac44..885cbf532 100644 --- a/lib/vtls/axtls.c +++ b/lib/vtls/axtls.c @@ -705,6 +705,11 @@ CURLcode Curl_axtls_random(struct Curl_easy *data, const struct Curl_ssl Curl_ssl_axtls = { "axtls", /* name */ + 0, /* have_ca_path */ + 0, /* have_certinfo */ + 0, /* have_pinnedpubkey */ + 0, /* have_ssl_ctx */ + Curl_axtls_init, /* init */ Curl_axtls_cleanup, /* cleanup */ Curl_axtls_version, /* version */ -- cgit v1.2.3