mirror of
https://github.com/curl/curl.git
synced 2025-01-18 14:04:30 +08:00
keep lines < 80 columns
This commit is contained in:
parent
b0e909329e
commit
bf648fcfc3
@ -163,7 +163,8 @@ static int wait_ms(int timeout_ms)
|
|||||||
* 0 = timeout
|
* 0 = timeout
|
||||||
* CURL_CSELECT_IN | CURL_CSELECT_OUT | CURL_CSELECT_ERR
|
* CURL_CSELECT_IN | CURL_CSELECT_OUT | CURL_CSELECT_ERR
|
||||||
*/
|
*/
|
||||||
int Curl_socket_ready(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms)
|
int Curl_socket_ready(curl_socket_t readfd, curl_socket_t writefd,
|
||||||
|
int timeout_ms)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_POLL_FINE
|
#ifdef HAVE_POLL_FINE
|
||||||
struct pollfd pfd[2];
|
struct pollfd pfd[2];
|
||||||
@ -468,7 +469,8 @@ int Curl_select(int nfds,
|
|||||||
SET_SOCKERRNO(EINVAL);
|
SET_SOCKERRNO(EINVAL);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
timeout_ms = (int)(timeout->tv_sec * 1000) + (int)(timeout->tv_usec / 1000);
|
timeout_ms = (int)(timeout->tv_sec * 1000) +
|
||||||
|
(int)(timeout->tv_usec / 1000);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
timeout_ms = -1;
|
timeout_ms = -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user