Unverified Commit a53bda35 authored by Johannes Schindelin's avatar Johannes Schindelin Committed by Daniel Stenberg
Browse files

vtls: fold the backend ID into the Curl_ssl structure

parent a243ce7a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -703,6 +703,7 @@ static void *Curl_axtls_get_internals(struct ssl_connect_data *connssl,

const struct Curl_ssl Curl_ssl_axtls = {
  "axtls",                        /* name */
  CURLSSLBACKEND_AXTLS,

  0, /* have_ca_path */
  0, /* have_certinfo */
+0 −3
Original line number Diff line number Diff line
@@ -29,9 +29,6 @@

extern const struct Curl_ssl Curl_ssl_axtls;

/* Set the API backend definition to axTLS */
#define CURL_SSL_BACKEND CURLSSLBACKEND_AXTLS

#endif /* USE_AXTLS */
#endif /* HEADER_CURL_AXTLS_H */
+1 −0
Original line number Diff line number Diff line
@@ -979,6 +979,7 @@ static void *Curl_cyassl_get_internals(struct ssl_connect_data *connssl,

const struct Curl_ssl Curl_ssl_cyassl = {
  "cyassl",                        /* name */
  CURLSSLBACKEND_CYASSL,

  0, /* have_ca_path */
  0, /* have_certinfo */
+0 −3
Original line number Diff line number Diff line
@@ -27,8 +27,5 @@

extern const struct Curl_ssl Curl_ssl_cyassl;

/* Set the API backend definition to CyaSSL */
#define CURL_SSL_BACKEND CURLSSLBACKEND_CYASSL

#endif /* USE_CYASSL */
#endif /* HEADER_CURL_CYASSL_H */
+1 −0
Original line number Diff line number Diff line
@@ -2891,6 +2891,7 @@ static void *Curl_darwinssl_get_internals(struct ssl_connect_data *connssl,

const struct Curl_ssl Curl_ssl_darwinssl = {
  "darwinssl",                        /* name */
  CURLSSLBACKEND_DARWINSSL,

  0, /* have_ca_path */
  0, /* have_certinfo */
Loading