Install curl-7.21.1.tar.bz2
[msysgit.git] / mingw / share / man / man3 / curl_multi_setopt.3
bloba1cbb70dc4894ae585ae8edf68de15a76700a842
1 .\"
2 .TH curl_multi_setopt 3 "10 Oct 2006" "libcurl 7.16.0" "libcurl Manual"
3 .SH NAME
4 curl_multi_setopt \- set options for a curl multi handle
5 .SH SYNOPSIS
6 #include <curl/curl.h>
8 CURLMcode curl_multi_setopt(CURLM * multi_handle, CURLMoption option, param);
9 .SH DESCRIPTION
10 curl_multi_setopt() is used to tell a libcurl multi handle how to behave. By
11 using the appropriate options to \fIcurl_multi_setopt(3)\fP, you can change
12 libcurl's behaviour when using that multi handle.  All options are set with
13 the \fIoption\fP followed by the parameter \fIparam\fP. That parameter can be
14 a \fBlong\fP, a \fBfunction pointer\fP, an \fBobject pointer\fP or a
15 \fBcurl_off_t\fP type, depending on what the specific option expects. Read
16 this manual carefully as bad input values may cause libcurl to behave badly!
17 You can only set one option in each function call.
19 .SH OPTIONS
20 .IP CURLMOPT_SOCKETFUNCTION
21 Pass a pointer to a function matching the \fBcurl_socket_callback\fP
22 prototype. The \fIcurl_multi_socket_action(3)\fP function informs the
23 application about updates in the socket (file descriptor) status by doing
24 none, one, or multiple calls to the curl_socket_callback given in the
25 \fBparam\fP argument. They update the status with changes since the previous
26 time a \fIcurl_multi_socket(3)\fP function was called. If the given callback
27 pointer is NULL, no callback will be called. Set the callback's \fBuserp\fP
28 argument with \fICURLMOPT_SOCKETDATA\fP.  See \fIcurl_multi_socket(3)\fP for
29 more callback details.
30 .IP CURLMOPT_SOCKETDATA
31 Pass a pointer to whatever you want passed to the \fBcurl_socket_callback\fP's
32 forth argument, the userp pointer. This is not used by libcurl but only
33 passed-thru as-is. Set the callback pointer with
34 \fICURLMOPT_SOCKETFUNCTION\fP.
35 .IP CURLMOPT_PIPELINING
36 Pass a long set to 1 to enable or 0 to disable. Enabling pipelining on a multi
37 handle will make it attempt to perform HTTP Pipelining as far as possible for
38 transfers using this handle. This means that if you add a second request that
39 can use an already existing connection, the second request will be \&"piped"
40 on the same connection rather than being executed in parallel. (Added in
41 7.16.0)
42 .IP CURLMOPT_TIMERFUNCTION
43 Pass a pointer to a function matching the \fBcurl_multi_timer_callback\fP
44 prototype.  This function will then be called when the timeout value
45 changes. The timeout value is at what latest time the application should call
46 one of the \&"performing" functions of the multi interface
47 (\fIcurl_multi_socket_action(3)\fP and \fIcurl_multi_perform(3)\fP) - to allow
48 libcurl to keep timeouts and retries etc to work. A timeout value of -1 means
49 that there is no timeout at all, and 0 means that the timeout is already
50 reached. Libcurl attempts to limit calling this only when the fixed future
51 timeout time actually changes. See also \fICURLMOPT_TIMERDATA\fP. This
52 callback can be used instead of, or in addition to,
53 \fIcurl_multi_timeout(3)\fP. (Added in 7.16.0)
54 .IP CURLMOPT_TIMERDATA
55 Pass a pointer to whatever you want passed to the
56 \fBcurl_multi_timer_callback\fP's third argument, the userp pointer.  This is
57 not used by libcurl but only passed-thru as-is. Set the callback pointer with
58 \fICURLMOPT_TIMERFUNCTION\fP. (Added in 7.16.0)
59 .IP CURLMOPT_MAXCONNECTS
60 Pass a long. The set number will be used as the maximum amount of
61 simultaneously open connections that libcurl may cache. Default is 10, and
62 libcurl will enlarge the size for each added easy handle to make it fit 4
63 times the number of added easy handles.
65 By setting this option, you can prevent the cache size from growing beyond the
66 limit set by you.
68 When the cache is full, curl closes the oldest one in the cache to prevent the
69 number of open connections from increasing.
71 This option is for the multi handle's use only, when using the easy interface
72 you should instead use the \fICURLOPT_MAXCONNECTS\fP option.
74 (Added in 7.16.3)
75 .SH RETURNS
76 The standard CURLMcode for multi interface error codes. Note that it returns a
77 CURLM_UNKNOWN_OPTION if you try setting an option that this version of libcurl
78 doesn't know of.
79 .SH AVAILABILITY
80 This function was added in libcurl 7.15.4.
81 .SH "SEE ALSO"
82 .BR curl_multi_cleanup "(3), " curl_multi_init "(3), "
83 .BR curl_multi_socket "(3), " curl_multi_info_read "(3)"