curl_multi_fdset.3 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2022, 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.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. .\" * SPDX-License-Identifier: curl
  22. .\" *
  23. .\" **************************************************************************
  24. .TH curl_multi_fdset 3 "2 Jan 2006" "libcurl 7.16.0" "libcurl Manual"
  25. .SH NAME
  26. curl_multi_fdset - extracts file descriptor information from a multi handle
  27. .SH SYNOPSIS
  28. .nf
  29. #include <curl/curl.h>
  30. CURLMcode curl_multi_fdset(CURLM *multi_handle,
  31. fd_set *read_fd_set,
  32. fd_set *write_fd_set,
  33. fd_set *exc_fd_set,
  34. int *max_fd);
  35. .ad
  36. .SH DESCRIPTION
  37. This function extracts file descriptor information from a given multi_handle.
  38. libcurl returns its \fIfd_set\fP sets. The application can use these to
  39. select() on, but be sure to \fIFD_ZERO\fP them before calling this function as
  40. \fIcurl_multi_fdset(3)\fP only adds its own descriptors, it does not zero or
  41. otherwise remove any others. The \fIcurl_multi_perform(3)\fP function should
  42. be called as soon as one of them is ready to be read from or written to.
  43. If the \fIread_fd_set\fP argument is not a null pointer, it points to an
  44. object of type \fBfd_set\fP that on returns specifies the file descriptors to
  45. be checked for being ready to read.
  46. If the \fIwrite_fd_set\fP argument is not a null pointer, it points to an
  47. object of type \fBfd_set\fP that on return specifies the file descriptors to
  48. be checked for being ready to write.
  49. If the \fIexc_fd_set\fP argument is not a null pointer, it points to an object
  50. of type \fBfd_set\fP that on return specifies the file descriptors to be
  51. checked for error conditions pending.
  52. If no file descriptors are set by libcurl, \fImax_fd\fP will contain -1 when
  53. this function returns. Otherwise it will contain the highest descriptor number
  54. libcurl set. When libcurl returns -1 in \fImax_fd\fP, it is because libcurl
  55. currently does something that is not possible for your application to monitor
  56. with a socket and unfortunately you can then not know exactly when the current
  57. action is completed using select(). You then need to wait a while before you
  58. proceed and call \fIcurl_multi_perform(3)\fP anyway. How long to wait? Unless
  59. \fIcurl_multi_timeout(3)\fP gives you a lower number, we suggest 100
  60. milliseconds or so, but you may want to test it out in your own particular
  61. conditions to find a suitable value.
  62. When doing select(), you should use \fIcurl_multi_timeout(3)\fP to figure out
  63. how long to wait for action. Call \fIcurl_multi_perform(3)\fP even if no
  64. activity has been seen on the \fBfd_sets\fP after the timeout expires as
  65. otherwise internal retries and timeouts may not work as you would think and
  66. want.
  67. If one of the sockets used by libcurl happens to be larger than what can be
  68. set in an \fBfd_set\fP, which on POSIX systems means that the file descriptor
  69. is larger than \fBFD_SETSIZE\fP, then libcurl will try to not set it. Setting
  70. a too large file descriptor in an \fBfd_set\fP implies an out of bounds write
  71. which can cause crashes, or worse. The effect of NOT storing it will possibly
  72. save you from the crash, but will make your program NOT wait for sockets it
  73. should wait for...
  74. .SH EXAMPLE
  75. .nf
  76. /* get file descriptors from the transfers */
  77. mc = curl_multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd);
  78. if(mc != CURLM_OK) {
  79. fprintf(stderr, "curl_multi_fdset() failed, code %d.\\n", mc);
  80. break;
  81. }
  82. /* wait for activity on one of the sockets */
  83. rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
  84. .fi
  85. .SH AVAILABILITY
  86. Added in 7.9.6
  87. .SH RETURN VALUE
  88. \fBCURLMcode\fP type, general libcurl multi interface error code. See
  89. \fIlibcurl-errors(3)\fP
  90. .SH "SEE ALSO"
  91. .BR curl_multi_cleanup "(3), " curl_multi_init "(3), "
  92. .BR curl_multi_wait "(3), "
  93. .BR curl_multi_timeout "(3), " curl_multi_perform "(3), " select "(2) "