Imported Upstream version 7.48.0
[platform/upstream/curl.git] / docs / libcurl / curl_multi_wait.3
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
9 .\" *
10 .\" * This software is licensed as described in the file COPYING, which
11 .\" * you should have received as part of this distribution. The terms
12 .\" * are also available at https://curl.haxx.se/docs/copyright.html.
13 .\" *
14 .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 .\" * copies of the Software, and permit persons to whom the Software is
16 .\" * furnished to do so, under the terms of the COPYING file.
17 .\" *
18 .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 .\" * KIND, either express or implied.
20 .\" *
21 .\" **************************************************************************
22 .TH curl_multi_wait 3 "12 Jul 2012" "libcurl 7.28.0" "libcurl Manual"
23 .SH NAME
24 curl_multi_wait - polls on all easy handles in a multi handle
25 .SH SYNOPSIS
26 .nf
27 #include <curl/curl.h>
28
29 CURLMcode curl_multi_wait(CURLM *multi_handle,
30                           struct curl_waitfd extra_fds[],
31                           unsigned int extra_nfds,
32                           int timeout_ms,
33                           int *numfds);
34 .ad
35 .SH DESCRIPTION
36 \fIcurl_multi_wait(3)\fP polls all file descriptors used by the curl easy
37 handles contained in the given multi handle set.  It will block until activity
38 is detected on at least one of the handles or \fItimeout_ms\fP has passed.
39 Alternatively, if the multi handle has a pending internal timeout that has a
40 shorter expiry time than \fItimeout_ms\fP, that shorter time will be used
41 instead to make sure timeout accuracy is reasonably kept.
42
43 The calling application may pass additional curl_waitfd structures which are
44 similar to \fIpoll(2)\fP's pollfd structure to be waited on in the same call.
45
46 On completion, if \fInumfds\fP is non-NULL, it will be populated with the
47 total number of file descriptors on which interesting events occurred. This
48 number can include both libcurl internal descriptors as well as descriptors
49 provided in \fIextra_fds\fP.
50
51 If no extra file descriptors are provided and libcurl has no file descriptor
52 to offer to wait for, this function will return immediately.
53
54 This function is encouraged to be used instead of select(3) when using the
55 multi interface to allow applications to easier circumvent the common problem
56 with 1024 maximum file descriptors.
57 .SH curl_waitfd
58 .nf
59 struct curl_waitfd {
60   curl_socket_t fd;
61   short events;
62   short revents;
63 };
64 .fi
65 .IP CURL_WAIT_POLLIN
66 Bit flag to curl_waitfd.events indicating the socket should poll on read
67 events such as new data received.
68 .IP CURL_WAIT_POLLPRI
69 Bit flag to curl_waitfd.events indicating the socket should poll on high
70 priority read events such as out of band data.
71 .IP CURL_WAIT_POLLOUT
72 Bit flag to curl_waitfd.events indicating the socket should poll on write
73 events such as the socket being clear to write without blocking.
74 .SH EXAMPLE
75 .nf
76 CURL *easy_handle;
77 CURLM *multi_handle;
78
79 /* add the individual easy handle */
80 curl_multi_add_handle(multi_handle, easy_handle);
81
82 do {
83   CURLMcode mc;
84   int numfds;
85
86   mc = curl_multi_perform(multi_handle, &still_running);
87
88   if(mc == CURLM_OK ) {
89     /* wait for activity, timeout or "nothing" */
90     mc = curl_multi_wait(multi_handle, NULL, 0, 1000, &numfds);
91   }
92
93   if(mc != CURLM_OK) {
94     fprintf(stderr, "curl_multi failed, code %d.\n", mc);
95     break;
96   }
97
98   /* 'numfds' being zero means either a timeout or no file descriptors to
99      wait for. Try timeout on first occurrence, then assume no file
100      descriptors and no file descriptors to wait for means wait for 100
101      milliseconds. */
102
103   if(!numfds) {
104     repeats++; /* count number of repeated zero numfds */
105     if(repeats > 1) {
106       WAITMS(100); /* sleep 100 milliseconds */
107     }
108   }
109   else
110     repeats = 0;
111
112 } while(still_running);
113
114 curl_multi_remove_handle(multi_handle, easy_handle);
115 .fi
116 .SH RETURN VALUE
117 CURLMcode type, general libcurl multi interface error code. See
118 \fIlibcurl-errors(3)\fP
119 .SH AVAILABILITY
120 This function was added in libcurl 7.28.0.
121 .SH "SEE ALSO"
122 .BR curl_multi_fdset "(3), " curl_multi_perform "(3)"