1curl_multi_timeout(3)           libcurl Manual           curl_multi_timeout(3)
2
3
4

NAME

6       curl_multi_timeout - how long to wait for action before proceeding
7

SYNOPSIS

9       #include <curl/curl.h>
10
11       CURLMcode curl_multi_timeout(CURLM *multi_handle, long *timeout);
12

DESCRIPTION

14       An   application   using   the  libcurl  multi  interface  should  call
15       curl_multi_timeout(3) to figure out how long it should wait for  socket
16       actions - at most - before proceeding.
17
18       Proceeding means either doing the socket-style timeout action: call the
19       curl_multi_socket_action(3) function with the sockfd  argument  set  to
20       CURL_SOCKET_TIMEOUT,  or call curl_multi_perform(3) if you're using the
21       simpler and older multi interface approach.
22
23       The timeout value returned in the long timeout points to, is in  number
24       of  milliseconds at this very moment. If 0, it means you should proceed
25       immediately without waiting for anything. If it returns -1, there's  no
26       timeout at all set.
27
28       An application that uses the multi_socket API SHOULD NOT use this func‐
29       tion,  but  SHOULD  instead  use  curl_multi_setopt(3)  and  its  CURL‐
30       MOPT_TIMERFUNCTION option for proper and desired behavior.
31
32       Note:  if libcurl returns a -1 timeout here, it just means that libcurl
33       currently has no stored timeout value. You must not wait too long (more
34       than a few seconds perhaps) before you call curl_multi_perform() again.
35

EXAMPLE

37       struct timeval timeout;
38       long timeo;
39
40       curl_multi_timeout(multi_handle, &timeo);
41       if(timeo < 0)
42         /* no set timeout, use a default */
43         timeo = 980;
44
45       timeout.tv_sec = timeo / 1000;
46       timeout.tv_usec = (timeo % 1000) * 1000;
47
48       /* wait for activities no longer than the set timeout */
49       select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
50

RETURN VALUE

52       The standard CURLMcode for multi interface error codes.
53

TYPICAL USAGE

55       Call  curl_multi_timeout(3),  then  wait for action on the sockets. You
56       figure out which sockets to wait for by calling curl_multi_fdset(3)  or
57       by a previous call to curl_multi_socket(3).
58

AVAILABILITY

60       This function was added in libcurl 7.15.4.
61

SEE ALSO

63       curl_multi_fdset(3),   curl_multi_info_read(3),   curl_multi_socket(3),
64       curl_multi_setopt(3)
65
66
67
68libcurl 7.79.1                 November 04, 2020         curl_multi_timeout(3)
Impressum