mirror of
https://github.com/curl/curl.git
synced 2026-08-26 14:33:32 +03:00
PolarSSL: initial support added
This is Hoi-Ho Chan's patch with some minor fixes by me. There are some potential issues in this, but none worse than we can sort out on the list and over time.
This commit is contained in:
parent
1de6b97a76
commit
51427e1947
10 changed files with 592 additions and 6 deletions
12
lib/http.c
12
lib/http.c
|
|
@ -1865,6 +1865,18 @@ static int https_getsock(struct connectdata *conn,
|
|||
(void)numsocks;
|
||||
return GETSOCK_BLANK;
|
||||
}
|
||||
#else
|
||||
#ifdef USE_POLARSSL
|
||||
static int https_getsock(struct connectdata *conn,
|
||||
curl_socket_t *socks,
|
||||
int numsocks)
|
||||
{
|
||||
(void)conn;
|
||||
(void)socks;
|
||||
(void)numsocks;
|
||||
return GETSOCK_BLANK;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue