curl_multi_setopt.3 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2019, 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_setopt 3 "4 Nov 2014" "libcurl 7.39.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. \fIcurl_multi_setopt(3)\fP is used to tell a libcurl multi handle how to
  30. behave. By using the appropriate options to \fIcurl_multi_setopt(3)\fP, you
  31. can change libcurl's behaviour when using that multi handle. All options are
  32. set with the \fIoption\fP followed by the parameter \fIparam\fP. That
  33. parameter can be a \fBlong\fP, a \fBfunction pointer\fP, an \fBobject
  34. pointer\fP or a \fBcurl_off_t\fP type, depending on what the specific option
  35. expects. Read this manual carefully as bad input values may cause libcurl to
  36. behave badly! You can only set one option in each function call.
  37. .SH OPTIONS
  38. .IP CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE
  39. See \fICURLMOPT_CHUNK_LENGTH_PENALTY_SIZE(3)\fP
  40. .IP CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE
  41. See \fICURLMOPT_CONTENT_LENGTH_PENALTY_SIZE(3)\fP
  42. .IP CURLMOPT_MAX_HOST_CONNECTIONS
  43. See \fICURLMOPT_MAX_HOST_CONNECTIONS(3)\fP
  44. .IP CURLMOPT_MAX_PIPELINE_LENGTH
  45. See \fICURLMOPT_MAX_PIPELINE_LENGTH(3)\fP
  46. .IP CURLMOPT_MAX_TOTAL_CONNECTIONS
  47. See \fICURLMOPT_MAX_TOTAL_CONNECTIONS(3)\fP
  48. .IP CURLMOPT_MAXCONNECTS
  49. See \fICURLMOPT_MAXCONNECTS(3)\fP
  50. .IP CURLMOPT_PIPELINING
  51. See \fICURLMOPT_PIPELINING(3)\fP
  52. .IP CURLMOPT_PIPELINING_SITE_BL
  53. See \fICURLMOPT_PIPELINING_SITE_BL(3)\fP
  54. .IP CURLMOPT_PIPELINING_SERVER_BL
  55. See \fICURLMOPT_PIPELINING_SERVER_BL(3)\fP
  56. .IP CURLMOPT_PUSHFUNCTION
  57. See \fICURLMOPT_PUSHFUNCTION(3)\fP
  58. .IP CURLMOPT_PUSHDATA
  59. See \fICURLMOPT_PUSHDATA(3)\fP
  60. .IP CURLMOPT_SOCKETFUNCTION
  61. See \fICURLMOPT_SOCKETFUNCTION(3)\fP
  62. .IP CURLMOPT_SOCKETDATA
  63. See \fICURLMOPT_SOCKETDATA(3)\fP
  64. .IP CURLMOPT_TIMERFUNCTION
  65. See \fICURLMOPT_TIMERFUNCTION(3)\fP
  66. .IP CURLMOPT_TIMERDATA
  67. See \fICURLMOPT_TIMERDATA(3)\fP
  68. .IP CURLMOPT_MAX_CONCURRENT_STREAMS
  69. See \fICURLMOPT_MAX_CONCURRENT_STREAMS(3)\fP
  70. .SH RETURNS
  71. The standard CURLMcode for multi interface error codes. Note that it returns a
  72. CURLM_UNKNOWN_OPTION if you try setting an option that this version of libcurl
  73. doesn't know of.
  74. .SH AVAILABILITY
  75. This function was added in libcurl 7.15.4.
  76. .SH "SEE ALSO"
  77. .BR curl_multi_cleanup "(3), " curl_multi_init "(3), "
  78. .BR curl_multi_socket "(3), " curl_multi_info_read "(3)"