Patrick Monnerat restored qssl successful compilation and loading

This commit is contained in:
Daniel Stenberg 2007-07-30 21:41:12 +00:00
parent 21d62118dc
commit f01c6e51f4
2 changed files with 13 additions and 1 deletions

View File

@ -1588,6 +1588,18 @@ int Curl_https_getsock(struct connectdata *conn,
(void)numsocks;
return GETSOCK_BLANK;
}
#else
#ifdef USE_QSOSSL
int Curl_https_getsock(struct connectdata *conn,
curl_socket_t *socks,
int numsocks)
{
(void)conn;
(void)socks;
(void)numsocks;
return GETSOCK_BLANK;
}
#endif
#endif
#endif
#endif

View File

@ -32,7 +32,7 @@
int Curl_qsossl_init(void);
void Curl_qsossl_cleanup(void);
CURLcode Curl_qsossl_connect(struct connectdata * conn, int sockindex);
void Curl_qsossl_close(struct connectdata * conn); /* close a SSL connection */
void Curl_qsossl_close(struct connectdata *conn, int sockindex);
int Curl_qsossl_close_all(struct SessionHandle * data);
int Curl_qsossl_shutdown(struct connectdata * conn, int sockindex);