Lines Matching full:timeout
28 CURLMcode curl_multi_timeout(CURLM *multi_handle, long *timeout);
35 Proceeding means either doing the socket-style timeout action: call the
40 The timeout value returned in the long \fBtimeout\fP points to, is in number
42 immediately without waiting for anything. If it returns -1, there's no timeout
49 Note: if libcurl returns a -1 timeout here, it just means that libcurl
50 currently has no stored timeout value. You must not wait too long (more than a
54 struct timeval timeout;
59 /* no set timeout, use a default */
62 timeout.tv_sec = timeo / 1000;
63 timeout.tv_usec = (timeo % 1000) * 1000;
65 /* wait for activities no longer than the set timeout */
66 select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);