mirror of
https://github.com/curl/curl.git
synced 2026-08-25 02:53:32 +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
|
|
@ -197,7 +197,7 @@ int waitconnect(curl_socket_t sockfd, /* socket */
|
|||
#endif
|
||||
|
||||
/* now select() until we get connect or timeout */
|
||||
rc = Curl_select(CURL_SOCKET_BAD, sockfd, (int)timeout_msec);
|
||||
rc = Curl_socket_ready(CURL_SOCKET_BAD, sockfd, (int)timeout_msec);
|
||||
if(-1 == rc)
|
||||
/* error, no connect here, try next */
|
||||
return WAITCONN_SELECT_ERROR;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue