curl_multi_wait.3 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2013, 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. CURLMcode curl_multi_wait(CURLM *multi_handle,
  29. struct curl_waitfd extra_fds[],
  30. unsigned int extra_nfds,
  31. int timeout_ms,
  32. int *numfds);
  33. .ad
  34. .SH DESCRIPTION
  35. This function polls on all file descriptors used by the curl easy handles
  36. contained in the given multi handle set. It will block until activity is
  37. detected on at least one of the handles or \fItimeout_ms\fP has passed.
  38. Alternatively, if the multi handle has a pending internal timeout that has a
  39. shorter expiry time than \fItimeout_ms\fP, that shorter time will be used
  40. instead to make sure timeout accuracy is reasonably kept.
  41. The calling application may pass additional curl_waitfd structures which are
  42. similar to \fIpoll(2)\fP's pollfd structure to be waited on in the same call.
  43. On completion, if \fInumfds\fP is supplied, it will be populated with the
  44. total number of file descriptors on which interesting events occured. This
  45. number can include both libcurl internal descriptors as well as descriptors
  46. provided in \fIextra_fds\fP.
  47. If no extra file descriptors are provided and libcurl has no file descriptor
  48. to offer to wait for, this function will return immediately.
  49. This function is encouraged to be used instead of select(3) when using the
  50. multi interface to allow applications to easier circumvent the common problem
  51. with 1024 maximum file descriptors.
  52. .SH curl_waitfd
  53. .nf
  54. struct curl_waitfd {
  55. curl_socket_t fd;
  56. short events;
  57. short revents;
  58. };
  59. .fi
  60. .IP CURL_WAIT_POLLIN
  61. Bit flag to curl_waitfd.events indicating the socket should poll on read
  62. events such as new data received.
  63. .IP CURL_WAIT_POLLPRI
  64. Bit flag to curl_waitfd.events indicating the socket should poll on high
  65. priority read events such as out of band data.
  66. .IP CURL_WAIT_POLLOUT
  67. Bit flag to curl_waitfd.events indicating the socket should poll on write
  68. events such as the socket being clear to write without blocking.
  69. .SH RETURN VALUE
  70. CURLMcode type, general libcurl multi interface error code. See
  71. \fIlibcurl-errors(3)\fP
  72. .SH AVAILABILITY
  73. This function was added in libcurl 7.28.0.
  74. .SH "SEE ALSO"
  75. .BR curl_multi_fdset "(3), " curl_multi_perform "(3)"