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