Reinstate a lot of the original build environment
[msysgit.git] / mingw / share / man / man3 / curl_multi_setopt.3
blob13e70c9be438ea46159239b0ee2827d4df5cd5f8
1 .\" $Id: curl_multi_setopt.3,v 1.6 2007-05-30 20:04:44 bagder Exp $
2 .\"
3 .TH curl_multi_setopt 3 "10 Oct 2006" "libcurl 7.16.0" "libcurl Manual"
4 .SH NAME
5 curl_multi_setopt \- set options for a curl multi handle
6 .SH SYNOPSIS
7 #include <curl/curl.h>
9 CURLMcode curl_multi_setopt(CURLM * multi_handle, CURLMoption option, param);
10 .SH DESCRIPTION
11 curl_multi_setopt() is used to tell a libcurl multi handle how to behave. By
12 using the appropriate options to \fIcurl_multi_setopt(3)\fP, you can change
13 libcurl's behaviour when using that multi handle.  All options are set with
14 the \fIoption\fP followed by the parameter \fIparam\fP. That parameter can be
15 a \fBlong\fP, a \fBfunction pointer\fP, an \fBobject pointer\fP or a
16 \fBcurl_off_t\fP type, depending on what the specific option expects. Read
17 this manual carefully as bad input values may cause libcurl to behave badly!
18 You can only set one option in each function call.
20 .SH OPTIONS
21 .IP CURLMOPT_SOCKETFUNCTION
22 Pass a pointer to a function matching the \fBcurl_socket_callback\fP
23 prototype. The \fIcurl_multi_socket(3)\fP functions inform the application
24 about updates in the socket (file descriptor) status by doing none, one or
25 multiple calls to the curl_socket_callback given in the \fBparam\fP
26 argument. They update the status with changes since the previous time a
27 \fIcurl_multi_socket(3)\fP function was called. If the given callback pointer
28 is NULL, no callback will be called. Set the callback's \fBuserp\fP argument
29 with \fICURLMOPT_SOCKETDATA\fP.  See \fIcurl_multi_socket(3)\fP for more
30 callback details.
31 .IP CURLMOPT_SOCKETDATA
32 Pass a pointer to whatever you want passed to the \fBcurl_socket_callback\fP's
33 forth argument, the userp pointer. This is not used by libcurl but only
34 passed-thru as-is. Set the callback pointer with
35 \fICURLMOPT_SOCKETFUNCTION\fP.
36 .IP CURLMOPT_PIPELINING
37 Pass a long set to 1 to enable or 0 to disable. Enabling pipelining on a multi
38 handle will make it attempt to perform HTTP Pipelining as far as possible for
39 transfers using this handle. This means that if you add a second request that
40 can use an already existing connection, the second request will be \&"piped"
41 on the same connection rather than being executed in parallell. (Added in
42 7.16.0)
43 .IP CURLMOPT_TIMERFUNCTION
44 Pass a pointer to a function matching the \fBcurl_multi_timer_callback\fP
45 prototype.  This function will then be called when the timeout value
46 changes. The timeout value is at what latest time the application should call
47 one of the \&"performing" functions of the multi interface
48 (\fIcurl_multi_socket(3)\fP, \fIcurl_multi_socket_all(3)\fP and
49 \fIcurl_multi_perform(3)\fP) - to allow libcurl to keep timeouts and retries
50 etc to work. Libcurl attempts to limit calling this only when the fixed future
51 timeout time actually change. See also \fICURLMOPT_TIMERDATA\fP. This callback
52 can be used instead of, or in addition to, \fIcurl_multi_timeout(3)\fP. (Added
53 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 to grow 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 to increase.
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)"