Commit cac1dd58 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

ssl: provide Curl_ssl_backend even if no SSL library is available

parent 595f5f0e
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -249,6 +249,11 @@ unsigned int Curl_rand(struct SessionHandle *data)
  return (r << 16) | ((r >> 16) & 0xFFFF);
}

int Curl_ssl_backend(void)
{
  return (int)CURL_SSL_BACKEND;
}

#ifdef USE_SSL

/* "global" init done? */
@@ -697,9 +702,4 @@ void Curl_ssl_md5sum(unsigned char *tmp, /* input */
}
#endif

int Curl_ssl_backend(void)
{
  return (int)CURL_SSL_BACKEND;
}

#endif /* USE_SSL */
+2 −1
Original line number Diff line number Diff line
@@ -39,6 +39,8 @@ void Curl_free_ssl_config(struct ssl_config_data* sslc);

unsigned int Curl_rand(struct SessionHandle *);

int Curl_ssl_backend(void);

#ifdef USE_SSL
int Curl_ssl_init(void);
void Curl_ssl_cleanup(void);
@@ -96,7 +98,6 @@ void Curl_ssl_md5sum(unsigned char *tmp, /* input */
                     size_t tmplen,
                     unsigned char *md5sum, /* output */
                     size_t md5len);
int Curl_ssl_backend(void);

#define SSL_SHUTDOWN_TIMEOUT 10000 /* ms */