curl_multi_setopt.3 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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_setopt 3 "10 Oct 2006" "libcurl 7.16.0" "libcurl Manual"
  23. .SH NAME
  24. curl_multi_setopt \- set options for a curl multi handle
  25. .SH SYNOPSIS
  26. #include <curl/curl.h>
  27. CURLMcode curl_multi_setopt(CURLM * multi_handle, CURLMoption option, param);
  28. .SH DESCRIPTION
  29. curl_multi_setopt() is used to tell a libcurl multi handle how to behave. By
  30. using the appropriate options to \fIcurl_multi_setopt(3)\fP, you can change
  31. libcurl's behaviour when using that multi handle. All options are set with
  32. the \fIoption\fP followed by the parameter \fIparam\fP. That parameter can be
  33. a \fBlong\fP, a \fBfunction pointer\fP, an \fBobject pointer\fP or a
  34. \fBcurl_off_t\fP type, depending on what the specific option expects. Read
  35. this manual carefully as bad input values may cause libcurl to behave badly!
  36. You can only set one option in each function call.
  37. .SH OPTIONS
  38. .IP CURLMOPT_SOCKETFUNCTION
  39. Pass a pointer to a function matching the \fBcurl_socket_callback\fP
  40. prototype. The \fIcurl_multi_socket_action(3)\fP function informs the
  41. application about updates in the socket (file descriptor) status by doing
  42. none, one, or multiple calls to the curl_socket_callback given in the
  43. \fBparam\fP argument. They update the status with changes since the previous
  44. time a \fIcurl_multi_socket(3)\fP function was called. If the given callback
  45. pointer is NULL, no callback will be called. Set the callback's \fBuserp\fP
  46. argument with \fICURLMOPT_SOCKETDATA\fP. See \fIcurl_multi_socket(3)\fP for
  47. more callback details.
  48. .IP CURLMOPT_SOCKETDATA
  49. Pass a pointer to whatever you want passed to the \fBcurl_socket_callback\fP's
  50. fourth argument, the userp pointer. This is not used by libcurl but only
  51. passed-thru as-is. Set the callback pointer with
  52. \fICURLMOPT_SOCKETFUNCTION\fP.
  53. .IP CURLMOPT_PIPELINING
  54. Pass a long set to 1 to enable or 0 to disable. Enabling pipelining on a multi
  55. handle will make it attempt to perform HTTP Pipelining as far as possible for
  56. transfers using this handle. This means that if you add a second request that
  57. can use an already existing connection, the second request will be \&"piped"
  58. on the same connection rather than being executed in parallel. (Added in
  59. 7.16.0)
  60. .IP CURLMOPT_TIMERFUNCTION
  61. Pass a pointer to a function matching the \fBcurl_multi_timer_callback\fP
  62. prototype: int curl_multi_timer_callback(CURLM *multi /* multi handle */,
  63. long timeout_ms /* timeout in milliseconds */, void *userp /* TIMERDATA */).
  64. This function will then be called when the timeout value
  65. changes. The timeout value is at what latest time the application should call
  66. one of the \&"performing" functions of the multi interface
  67. (\fIcurl_multi_socket_action(3)\fP and \fIcurl_multi_perform(3)\fP) - to allow
  68. libcurl to keep timeouts and retries etc to work. A timeout value of -1 means
  69. that there is no timeout at all, and 0 means that the timeout is already
  70. reached. Libcurl attempts to limit calling this only when the fixed future
  71. timeout time actually changes. See also \fICURLMOPT_TIMERDATA\fP. The callback
  72. should return 0 on success, and -1 on error. This
  73. callback can be used instead of, or in addition to,
  74. \fIcurl_multi_timeout(3)\fP. (Added in 7.16.0)
  75. .IP CURLMOPT_TIMERDATA
  76. Pass a pointer to whatever you want passed to the
  77. \fBcurl_multi_timer_callback\fP's third argument, the userp pointer. This is
  78. not used by libcurl but only passed-thru as-is. Set the callback pointer with
  79. \fICURLMOPT_TIMERFUNCTION\fP. (Added in 7.16.0)
  80. .IP CURLMOPT_MAXCONNECTS
  81. Pass a long. The set number will be used as the maximum amount of
  82. simultaneously open connections that libcurl may keep in its connection cache
  83. after completed use. By default libcurl will enlarge the size for each added
  84. easy handle to make it fit 4 times the number of added easy handles.
  85. By setting this option, you can prevent the cache size from growing beyond the
  86. limit set by you.
  87. When the cache is full, curl closes the oldest one in the cache to prevent the
  88. number of open connections from increasing.
  89. This option is for the multi handle's use only, when using the easy interface
  90. you should instead use the \fICURLOPT_MAXCONNECTS(3)\fP option.
  91. See \fICURLMOPT_MAX_TOTAL_CONNECTIONS\fP for limiting the number of active
  92. connections.
  93. (Added in 7.16.3)
  94. .IP CURLMOPT_MAX_HOST_CONNECTIONS
  95. Pass a long. The set number will be used as the maximum amount of
  96. simultaneously open connections to a single host. For each new session to
  97. a host, libcurl will open a new connection up to the limit set by
  98. CURLMOPT_MAX_HOST_CONNECTIONS. When the limit is reached, the sessions will
  99. be pending until there are available connections. If CURLMOPT_PIPELINING is
  100. 1, libcurl will try to pipeline if the host is capable of it.
  101. The default value is 0, which means that there is no limit.
  102. However, for backwards compatibility, setting it to 0 when CURLMOPT_PIPELINING
  103. is 1 will not be treated as unlimited. Instead it will open only 1 connection
  104. and try to pipeline on it.
  105. (Added in 7.30.0)
  106. .IP CURLMOPT_MAX_PIPELINE_LENGTH
  107. Pass a long. The set number will be used as the maximum amount of requests
  108. in a pipelined connection. When this limit is reached, libcurl will use another
  109. connection to the same host (see CURLMOPT_MAX_HOST_CONNECTIONS), or queue the
  110. requests until one of the pipelines to the host is ready to accept a request.
  111. Thus, the total number of requests in-flight is CURLMOPT_MAX_HOST_CONNECTIONS *
  112. CURLMOPT_MAX_PIPELINE_LENGTH.
  113. The default value is 5.
  114. (Added in 7.30.0)
  115. .IP CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE
  116. Pass a long. If a pipelined connection is currently processing a request
  117. with a Content-Length larger than CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE, that
  118. connection will not be considered for additional requests, even if it is
  119. shorter than CURLMOPT_MAX_PIPELINE_LENGTH.
  120. The default value is 0, which means that the penalization is inactive.
  121. (Added in 7.30.0)
  122. .IP CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE
  123. Pass a long. If a pipelined connection is currently processing a
  124. chunked (Transfer-encoding: chunked) request with a current chunk length
  125. larger than CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE, that connection will not be
  126. considered for additional requests, even if it is shorter than
  127. CURLMOPT_MAX_PIPELINE_LENGTH.
  128. The default value is 0, which means that the penalization is inactive.
  129. (Added in 7.30.0)
  130. .IP CURLMOPT_PIPELINING_SITE_BL
  131. Pass an array of char *, ending with NULL. This is a list of sites that are
  132. blacklisted from pipelining, i.e sites that are known to not support HTTP
  133. pipelining. The array is copied by libcurl.
  134. The default value is NULL, which means that there is no blacklist.
  135. Pass a NULL pointer to clear the blacklist.
  136. Example:
  137. .nf
  138. site_blacklist[] =
  139. {
  140. "www.haxx.se",
  141. "www.example.com:1234",
  142. NULL
  143. };
  144. curl_multi_setopt(m, CURLMOPT_PIPELINE_SITE_BL, site_blacklist);
  145. .fi
  146. (Added in 7.30.0)
  147. .IP CURLMOPT_PIPELINING_SERVER_BL
  148. Pass an array of char *, ending with NULL. This is a list of server types
  149. prefixes (in the Server: HTTP header) that are blacklisted from pipelining,
  150. i.e server types that are known to not support HTTP pipelining. The array is
  151. copied by libcurl.
  152. Note that the comparison matches if the Server: header begins with the string
  153. in the blacklist, i.e "Server: Ninja 1.2.3" and "Server: Ninja 1.4.0" can
  154. both be blacklisted by having "Ninja" in the backlist.
  155. The default value is NULL, which means that there is no blacklist.
  156. Pass a NULL pointer to clear the blacklist.
  157. Example:
  158. .nf
  159. server_blacklist[] =
  160. {
  161. "Microsoft-IIS/6.0",
  162. "nginx/0.8.54",
  163. NULL
  164. };
  165. curl_multi_setopt(m, CURLMOPT_PIPELINE_SERVER_BL, server_blacklist);
  166. .fi
  167. (Added in 7.30.0)
  168. .IP CURLMOPT_MAX_TOTAL_CONNECTIONS
  169. Pass a long. The set number will be used as the maximum amount of
  170. simultaneously open connections in total. For each new session, libcurl
  171. will open a new connection up to the limit set by
  172. CURLMOPT_MAX_TOTAL_CONNECTIONS. When the limit is reached, the sessions will
  173. be pending until there are available connections. If CURLMOPT_PIPELINING is
  174. 1, libcurl will try to pipeline if the host is capable of it.
  175. The default value is 0, which means that there is no limit.
  176. However, for backwards compatibility, setting it to 0 when CURLMOPT_PIPELINING
  177. is 1 will not be treated as unlimited. Instead it will open only 1 connection
  178. and try to pipeline on it.
  179. (Added in 7.30.0)
  180. .SH RETURNS
  181. The standard CURLMcode for multi interface error codes. Note that it returns a
  182. CURLM_UNKNOWN_OPTION if you try setting an option that this version of libcurl
  183. doesn't know of.
  184. .SH AVAILABILITY
  185. This function was added in libcurl 7.15.4.
  186. .SH "SEE ALSO"
  187. .BR curl_multi_cleanup "(3), " curl_multi_init "(3), "
  188. .BR curl_multi_socket "(3), " curl_multi_info_read "(3)"