Lines Matching full:timeout
25 CURLMcode curl_multi_timeout(CURLM *multi_handle, long *timeout);
34 Proceeding means either doing the socket-style timeout action: call the
39 The timeout value returned in the long **timeout** points to, is in number
41 without waiting for anything. If it returns -1, there is no timeout at all set.
47 Note: if libcurl returns a -1 timeout here, it just means that libcurl
48 currently has no stored timeout value. You must not wait too long (more than a
56 struct timeval timeout;
66 /* no set timeout, use a default */
69 timeout.tv_sec = timeo / 1000;
70 timeout.tv_usec = (timeo % 1000) * 1000;
72 /* wait for activities no longer than the set timeout */
73 select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
82 When there is activity or timeout, call curl_multi_perform(3) and then