Lines Matching refs:timeout
80 struct timeval timeout;
95 /* set a suitable timeout to play around with */
96 timeout.tv_sec = 1;
97 timeout.tv_usec = 0;
101 timeout.tv_sec = curl_timeo / 1000;
102 if(timeout.tv_sec > 1)
103 timeout.tv_sec = 1;
105 timeout.tv_usec = (int)(curl_timeo % 1000) * 1000;
133 /* Note that on some platforms 'timeout' may be modified by select().
135 rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
142 case 0: /* timeout */