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 are 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 moment. If 0, it means you should proceed imme‐
25       diately 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

TYPICAL USAGE

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

AVAILABILITY

57       This function was added in libcurl 7.15.4.
58

RETURN VALUE

60       The standard CURLMcode for multi interface error codes.
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.82.0                 November 26, 2021         curl_multi_timeout(3)
Impressum