mirror of
https://github.com/curl/curl.git
synced 2026-08-24 18:33:34 +03:00
Internal function Curl_select() renamed to Curl_socket_ready()
This commit is contained in:
parent
2166645ce4
commit
fba4cd0e62
12 changed files with 25 additions and 22 deletions
|
|
@ -1890,7 +1890,7 @@ static bool SocketIsDead(curl_socket_t sock)
|
|||
int sval;
|
||||
bool ret_val = TRUE;
|
||||
|
||||
sval = Curl_select(sock, CURL_SOCKET_BAD, 0);
|
||||
sval = Curl_socket_ready(sock, CURL_SOCKET_BAD, 0);
|
||||
if(sval == 0)
|
||||
/* timeout */
|
||||
ret_val = FALSE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue