Base code merged to SPIN 2.4
[platform/upstream/curl.git] / docs / libcurl / curl_multi_wait.3
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2014, 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 http://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 occured. 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 RETURN VALUE
75 CURLMcode type, general libcurl multi interface error code. See
76 \fIlibcurl-errors(3)\fP
77 .SH AVAILABILITY
78 This function was added in libcurl 7.28.0.
79 .SH "SEE ALSO"
80 .BR curl_multi_fdset "(3), " curl_multi_perform "(3)"