1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

ssl: provide Curl_ssl_backend even if no SSL library is available

This commit is contained in:
Dan Fandrich 2014-08-03 10:40:36 +02:00
parent 595f5f0e43
commit cac1dd58a8
2 changed files with 7 additions and 6 deletions

View File

@ -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 */

View File

@ -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 */