Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Utilities / cmcurl-7.19.0 / docs / libcurl / curl_easy_setopt.3
blob5adfdc912bccdb93c91730a7c407c60f36de6ff5
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2008, 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 .\" * $Id: curl_easy_setopt.3,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
22 .\" **************************************************************************
23 .\"
24 .TH curl_easy_setopt 3 "30 Jul 2008" "libcurl 7.19.0" "libcurl Manual"
25 .SH NAME
26 curl_easy_setopt \- set options for a curl easy handle
27 .SH SYNOPSIS
28 #include <curl/curl.h>
30 CURLcode curl_easy_setopt(CURL *handle, CURLoption option, parameter);
31 .SH DESCRIPTION
32 curl_easy_setopt() is used to tell libcurl how to behave. By using the
33 appropriate options to \fIcurl_easy_setopt\fP, you can change libcurl's
34 behavior.  All options are set with the \fIoption\fP followed by a
35 \fIparameter\fP. That parameter can be a \fBlong\fP, a \fBfunction pointer\fP,
36 an \fBobject pointer\fP or a \fBcurl_off_t\fP, depending on what the specific
37 option expects. Read this manual carefully as bad input values may cause
38 libcurl to behave badly!  You can only set one option in each function call. A
39 typical application uses many curl_easy_setopt() calls in the setup phase.
41 Options set with this function call are valid for all forthcoming transfers
42 performed using this \fIhandle\fP.  The options are not in any way reset
43 between transfers, so if you want subsequent transfers with different options,
44 you must change them between the transfers. You can optionally reset all
45 options back to internal default with \fIcurl_easy_reset(3)\fP.
47 Strings passed to libcurl as 'char *' arguments, are copied by the library;
48 thus the string storage associated to the pointer argument may be overwritten
49 after curl_easy_setopt() returns. Exceptions to this rule are described in
50 the option details below.
52 NOTE: before 7.17.0 strings were not copied. Instead the user was forced keep
53 them available until libcurl no longer needed them.
55 The \fIhandle\fP is the return code from a \fIcurl_easy_init(3)\fP or
56 \fIcurl_easy_duphandle(3)\fP call.
57 .SH BEHAVIOR OPTIONS
58 .IP CURLOPT_VERBOSE
59 Set the parameter to 1 to get the library to display a lot of verbose
60 information about its operations. Very useful for libcurl and/or protocol
61 debugging and understanding. The verbose information will be sent to stderr,
62 or the stream set with \fICURLOPT_STDERR\fP.
64 You hardly ever want this set in production use, you will almost always want
65 this when you debug/report problems. Another neat option for debugging is the
66 \fICURLOPT_DEBUGFUNCTION\fP.
67 .IP CURLOPT_HEADER
68 A parameter set to 1 tells the library to include the header in the body
69 output. This is only relevant for protocols that actually have headers
70 preceding the data (like HTTP).
71 .IP CURLOPT_NOPROGRESS
72 A parameter set to 1 tells the library to shut off the built-in progress meter
73 completely.
75 Future versions of libcurl is likely to not have any built-in progress meter
76 at all.
77 .IP CURLOPT_NOSIGNAL
78 Pass a long. If it is 1, libcurl will not use any functions that
79 install signal handlers or any functions that cause signals to be sent to the
80 process. This option is mainly here to allow multi-threaded unix applications
81 to still set/use all timeout options etc, without risking getting signals.
82 (Added in 7.10)
84 Consider building libcurl with ares support to enable asynchronous DNS
85 lookups. It enables nice timeouts for name resolves without signals.
86 .PP
87 .SH CALLBACK OPTIONS
88 .IP CURLOPT_WRITEFUNCTION
89 Function pointer that should match the following prototype: \fBsize_t
90 function( void *ptr, size_t size, size_t nmemb, void *stream);\fP This
91 function gets called by libcurl as soon as there is data received that needs
92 to be saved. The size of the data pointed to by \fIptr\fP is \fIsize\fP
93 multiplied with \fInmemb\fP, it will not be zero terminated. Return the number
94 of bytes actually taken care of. If that amount differs from the amount passed
95 to your function, it'll signal an error to the library and it will abort the
96 transfer and return \fICURLE_WRITE_ERROR\fP.
98 From 7.18.0, the function can return CURL_WRITEFUNC_PAUSE which then will
99 cause writing to this connection to become paused. See
100 \fIcurl_easy_pause(3)\fP for further details.
102 This function may be called with zero bytes data if the transfered file is
103 empty.
105 Set this option to NULL to get the internal default function. The internal
106 default function will write the data to the FILE * given with
107 \fICURLOPT_WRITEDATA\fP.
109 Set the \fIstream\fP argument with the \fICURLOPT_WRITEDATA\fP option.
111 The callback function will be passed as much data as possible in all invokes,
112 but you cannot possibly make any assumptions. It may be one byte, it may be
113 thousands. The maximum amount of data that can be passed to the write callback
114 is defined in the curl.h header file: CURL_MAX_WRITE_SIZE.
115 .IP CURLOPT_WRITEDATA
116 Data pointer to pass to the file write function. If you use the
117 \fICURLOPT_WRITEFUNCTION\fP option, this is the pointer you'll get as
118 input. If you don't use a callback, you must pass a 'FILE *' as libcurl will
119 pass this to fwrite() when writing data.
121 The internal \fICURLOPT_WRITEFUNCTION\fP will write the data to the FILE *
122 given with this option, or to stdout if this option hasn't been set.
124 If you're using libcurl as a win32 DLL, you \fBMUST\fP use the
125 \fICURLOPT_WRITEFUNCTION\fP if you set this option or you will experience
126 crashes.
128 This option is also known with the older name \fICURLOPT_FILE\fP, the name
129 \fICURLOPT_WRITEDATA\fP was introduced in 7.9.7.
130 .IP CURLOPT_READFUNCTION
131 Function pointer that should match the following prototype: \fBsize_t
132 function( void *ptr, size_t size, size_t nmemb, void *stream);\fP This
133 function gets called by libcurl as soon as it needs to read data in order to
134 send it to the peer. The data area pointed at by the pointer \fIptr\fP may be
135 filled with at most \fIsize\fP multiplied with \fInmemb\fP number of
136 bytes. Your function must return the actual number of bytes that you stored in
137 that memory area. Returning 0 will signal end-of-file to the library and cause
138 it to stop the current transfer.
140 If you stop the current transfer by returning 0 "pre-maturely" (i.e before the
141 server expected it, like when you've told you will upload N bytes and you
142 upload less than N bytes), you may experience that the server "hangs" waiting
143 for the rest of the data that won't come.
145 The read callback may return \fICURL_READFUNC_ABORT\fP to stop the current
146 operation immediately, resulting in a \fICURLE_ABORTED_BY_CALLBACK\fP error
147 code from the transfer (Added in 7.12.1)
149 From 7.18.0, the function can return CURL_READFUNC_PAUSE which then will cause
150 reading from this connection to become paused. See \fIcurl_easy_pause(3)\fP
151 for further details.
153 If you set the callback pointer to NULL, or doesn't set it at all, the default
154 internal read function will be used. It is simply doing an fread() on the FILE
155 * stream set with \fICURLOPT_READDATA\fP.
156 .IP CURLOPT_READDATA
157 Data pointer to pass to the file read function. If you use the
158 \fICURLOPT_READFUNCTION\fP option, this is the pointer you'll get as input. If
159 you don't specify a read callback but instead rely on the default internal
160 read function, this data must be a valid readable FILE *.
162 If you're using libcurl as a win32 DLL, you MUST use a
163 \fICURLOPT_READFUNCTION\fP if you set this option.
165 This option is also known with the older name \fICURLOPT_INFILE\fP, the name
166 \fICURLOPT_READDATA\fP was introduced in 7.9.7.
167 .IP CURLOPT_IOCTLFUNCTION
168 Function pointer that should match the \fIcurl_ioctl_callback\fP prototype
169 found in \fI<curl/curl.h>\fP. This function gets called by libcurl when
170 something special I/O-related needs to be done that the library can't do by
171 itself. For now, rewinding the read data stream is the only action it can
172 request. The rewinding of the read data stream may be necessary when doing a
173 HTTP PUT or POST with a multi-pass authentication method.  (Option added in
174 7.12.3).
176 Use \fICURLOPT_SEEKFUNCTION\fP instead to provide seeking!
177 .IP CURLOPT_IOCTLDATA
178 Pass a pointer that will be untouched by libcurl and passed as the 3rd
179 argument in the ioctl callback set with \fICURLOPT_IOCTLFUNCTION\fP.  (Option
180 added in 7.12.3)
181 .IP CURLOPT_SEEKFUNCTION
182 Function pointer that should match the following prototype: \fIint
183 function(void *instream, curl_off_t offset, int origin);\fP This function gets
184 called by libcurl to seek to a certain position in the input stream and can be
185 used to fast forward a file in a resumed upload (instead of reading all
186 uploaded bytes with the normal read function/callback). It is also called to
187 rewind a stream when doing a HTTP PUT or POST with a multi-pass authentication
188 method. The function shall work like "fseek" or "lseek" and accepted SEEK_SET,
189 SEEK_CUR and SEEK_END as argument for origin, although (in 7.18.0) libcurl
190 only passes SEEK_SET. The callback must return 0 on success as returning
191 something else will cause the upload operation to fail.
193 If you forward the input arguments directly to "fseek" or "lseek", note that
194 the data type for \fIoffset\fP is not the same as defined for curl_off_t on
195 many systems! (Option added in 7.18.0)
196 .IP CURLOPT_SEEKDATA
197 Data pointer to pass to the file read function. If you use the
198 \fICURLOPT_SEEKFUNCTION\fP option, this is the pointer you'll get as input. If
199 you don't specify a seek callback, NULL is passed. (Option added in 7.18.0)
200 .IP CURLOPT_SOCKOPTFUNCTION
201 Function pointer that should match the \fIcurl_sockopt_callback\fP prototype
202 found in \fI<curl/curl.h>\fP. This function gets called by libcurl after the
203 socket() call but before the connect() call. The callback's \fIpurpose\fP
204 argument identifies the exact purpose for this particular socket, and
205 currently only one value is supported: \fICURLSOCKTYPE_IPCXN\fP for the
206 primary connection (meaning the control connection in the FTP case). Future
207 versions of libcurl may support more purposes. It passes the newly created
208 socket descriptor so additional setsockopt() calls can be done at the user's
209 discretion.  A non-zero return code from the callback function will signal an
210 unrecoverable error to the library and it will close the socket and return
211 \fICURLE_COULDNT_CONNECT\fP.  (Option added in 7.15.6.)
212 .IP CURLOPT_SOCKOPTDATA
213 Pass a pointer that will be untouched by libcurl and passed as the first
214 argument in the sockopt callback set with \fICURLOPT_SOCKOPTFUNCTION\fP.
215 (Option added in 7.15.6.)
216 .IP CURLOPT_OPENSOCKETFUNCTION
217 Function pointer that should match the \fIcurl_opensocket_callback\fP
218 prototype found in \fI<curl/curl.h>\fP. This function gets called by libcurl
219 instead of the \fIsocket(2)\fP call. The callback's \fIpurpose\fP argument
220 identifies the exact purpose for this particular socket, and currently only
221 one value is supported: \fICURLSOCKTYPE_IPCXN\fP for the primary connection
222 (meaning the control connection in the FTP case). Future versions of libcurl
223 may support more purposes. It passes the resolved peer address as a
224 \fIaddress\fP argument so the callback can modify the address or refuse to
225 connect at all. The callback function should return the socket or
226 \fICURL_SOCKET_BAD\fP in case no connection should be established or any error
227 detected. Any additional \fIsetsockopt(2)\fP calls can be done on the socket
228 at the user's discretion.  \fICURL_SOCKET_BAD\fP return value from the
229 callback function will signal an unrecoverable error to the library and it
230 will return \fICURLE_COULDNT_CONNECT\fP.  This return code can be used for IP
231 address blacklisting.  The default behavior is:
232 .Bd -literal -offset indent
233    return socket(addr->family, addr->socktype, addr->protocol);
235 (Option added in 7.17.1.)
236 .IP CURLOPT_OPENSOCKETDATA
237 Pass a pointer that will be untouched by libcurl and passed as the first
238 argument in the opensocket callback set with \fICURLOPT_OPENSOCKETFUNCTION\fP.
239 (Option added in 7.17.1.)
240 .IP CURLOPT_PROGRESSFUNCTION
241 Function pointer that should match the \fIcurl_progress_callback\fP prototype
242 found in \fI<curl/curl.h>\fP. This function gets called by libcurl instead of
243 its internal equivalent with a frequent interval during operation (roughly
244 once per second) no matter if data is being transfered or not.  Unknown/unused
245 argument values passed to the callback will be set to zero (like if you only
246 download data, the upload size will remain 0). Returning a non-zero value from
247 this callback will cause libcurl to abort the transfer and return
248 \fICURLE_ABORTED_BY_CALLBACK\fP.
250 If you transfer data with the multi interface, this function will not be
251 called during periods of idleness unless you call the appropriate libcurl
252 function that performs transfers.
254 \fICURLOPT_NOPROGRESS\fP must be set to 0 to make this function actually
255 get called.
256 .IP CURLOPT_PROGRESSDATA
257 Pass a pointer that will be untouched by libcurl and passed as the first
258 argument in the progress callback set with \fICURLOPT_PROGRESSFUNCTION\fP.
259 .IP CURLOPT_HEADERFUNCTION
260 Function pointer that should match the following prototype: \fIsize_t
261 function( void *ptr, size_t size, size_t nmemb, void *stream);\fP. This
262 function gets called by libcurl as soon as it has received header data. The
263 header callback will be called once for each header and only complete header
264 lines are passed on to the callback. Parsing headers should be easy enough
265 using this. The size of the data pointed to by \fIptr\fP is \fIsize\fP
266 multiplied with \fInmemb\fP. Do not assume that the header line is zero
267 terminated! The pointer named \fIstream\fP is the one you set with the
268 \fICURLOPT_WRITEHEADER\fP option. The callback function must return the number
269 of bytes actually taken care of, or return -1 to signal error to the library
270 (it will cause it to abort the transfer with a \fICURLE_WRITE_ERROR\fP return
271 code).
273 If this option is not set, or if it is set to NULL, but
274 \fICURLOPT_HEADERDATA\fP (\fICURLOPT_WRITEHEADER\fP) is set to anything but
275 NULL, the function used to accept response data will be used instead. That is,
276 it will be the function specified with \fICURLOPT_WRITEFUNCTION\fP, or if it
277 is not specified or NULL - the default, stream-writing function.
279 Since 7.14.1: When a server sends a chunked encoded transfer, it may contain a
280 trailer. That trailer is identical to a HTTP header and if such a trailer is
281 received it is passed to the application using this callback as well. There
282 are several ways to detect it being a trailer and not an ordinary header: 1)
283 it comes after the response-body. 2) it comes after the final header line (CR
284 LF) 3) a Trailer: header among the response-headers mention what header to
285 expect in the trailer.
286 .IP CURLOPT_WRITEHEADER
287 (This option is also known as \fBCURLOPT_HEADERDATA\fP) Pass a pointer to be
288 used to write the header part of the received data to. If you don't use your
289 own callback to take care of the writing, this must be a valid FILE *. See
290 also the \fICURLOPT_HEADERFUNCTION\fP option above on how to set a custom
291 get-all-headers callback.
292 .IP CURLOPT_DEBUGFUNCTION
293 Function pointer that should match the following prototype: \fIint
294 curl_debug_callback (CURL *, curl_infotype, char *, size_t, void *);\fP
295 \fICURLOPT_DEBUGFUNCTION\fP replaces the standard debug function used when
296 \fICURLOPT_VERBOSE \fP is in effect. This callback receives debug information,
297 as specified with the \fBcurl_infotype\fP argument. This function must return
298 0.  The data pointed to by the char * passed to this function WILL NOT be zero
299 terminated, but will be exactly of the size as told by the size_t argument.
301 Available curl_infotype values:
303 .IP CURLINFO_TEXT
304 The data is informational text.
305 .IP CURLINFO_HEADER_IN
306 The data is header (or header-like) data received from the peer.
307 .IP CURLINFO_HEADER_OUT
308 The data is header (or header-like) data sent to the peer.
309 .IP CURLINFO_DATA_IN
310 The data is protocol data received from the peer.
311 .IP CURLINFO_DATA_OUT
312 The data is protocol data sent to the peer.
314 .IP CURLOPT_DEBUGDATA
315 Pass a pointer to whatever you want passed in to your
316 \fICURLOPT_DEBUGFUNCTION\fP in the last void * argument. This pointer is not
317 used by libcurl, it is only passed to the callback.
318 .IP CURLOPT_SSL_CTX_FUNCTION
319 This option does only function for libcurl powered by OpenSSL. If libcurl was
320 built against another SSL library, this functionality is absent.
322 Function pointer that should match the following prototype: \fBCURLcode
323 sslctxfun(CURL *curl, void *sslctx, void *parm);\fP This function gets called
324 by libcurl just before the initialization of an SSL connection after having
325 processed all other SSL related options to give a last chance to an
326 application to modify the behaviour of openssl's ssl initialization. The
327 \fIsslctx\fP parameter is actually a pointer to an openssl \fISSL_CTX\fP. If
328 an error is returned no attempt to establish a connection is made and the
329 perform operation will return the error code from this callback function.  Set
330 the \fIparm\fP argument with the \fICURLOPT_SSL_CTX_DATA\fP option. This
331 option was introduced in 7.11.0.
333 This function will get called on all new connections made to a server, during
334 the SSL negotiation. The SSL_CTX pointer will be a new one every time.
336 To use this properly, a non-trivial amount of knowledge of the openssl
337 libraries is necessary. Using this function allows for example to use openssl
338 callbacks to add additional validation code for certificates, and even to
339 change the actual URI of an HTTPS request (example used in the lib509 test
340 case).  See also the example section for a replacement of the key, certificate
341 and trust file settings.
342 .IP CURLOPT_SSL_CTX_DATA
343 Data pointer to pass to the ssl context callback set by the option
344 \fICURLOPT_SSL_CTX_FUNCTION\fP, this is the pointer you'll get as third
345 parameter, otherwise \fBNULL\fP. (Added in 7.11.0)
346 .IP CURLOPT_CONV_TO_NETWORK_FUNCTION
347 .IP CURLOPT_CONV_FROM_NETWORK_FUNCTION
348 .IP CURLOPT_CONV_FROM_UTF8_FUNCTION
349 Function pointers that should match the following prototype: CURLcode
350 function(char *ptr, size_t length);
352 These three options apply to non-ASCII platforms only.  They are available
353 only if \fBCURL_DOES_CONVERSIONS\fP was defined when libcurl was built. When
354 this is the case, \fIcurl_version_info(3)\fP will return the CURL_VERSION_CONV
355 feature bit set.
357 The data to be converted is in a buffer pointed to by the ptr parameter.  The
358 amount of data to convert is indicated by the length parameter.  The converted
359 data overlays the input data in the buffer pointed to by the ptr parameter.
360 CURLE_OK should be returned upon successful conversion.  A CURLcode return
361 value defined by curl.h, such as CURLE_CONV_FAILED, should be returned if an
362 error was encountered.
364 \fBCURLOPT_CONV_TO_NETWORK_FUNCTION\fP and
365 \fBCURLOPT_CONV_FROM_NETWORK_FUNCTION\fP convert between the host encoding and
366 the network encoding.  They are used when commands or ASCII data are
367 sent/received over the network.
369 \fBCURLOPT_CONV_FROM_UTF8_FUNCTION\fP is called to convert from UTF8 into the
370 host encoding.  It is required only for SSL processing.
372 If you set a callback pointer to NULL, or don't set it at all, the built-in
373 libcurl iconv functions will be used.  If HAVE_ICONV was not defined when
374 libcurl was built, and no callback has been established, conversion will
375 return the CURLE_CONV_REQD error code.
377 If HAVE_ICONV is defined, CURL_ICONV_CODESET_OF_HOST must also be defined.
378 For example:
380  \&#define CURL_ICONV_CODESET_OF_HOST "IBM-1047"
382 The iconv code in libcurl will default the network and UTF8 codeset names as
383 follows:
385  \&#define CURL_ICONV_CODESET_OF_NETWORK "ISO8859-1"
387  \&#define CURL_ICONV_CODESET_FOR_UTF8   "UTF-8"
389 You will need to override these definitions if they are different on your
390 system.
391 .SH ERROR OPTIONS
392 .IP CURLOPT_ERRORBUFFER
393 Pass a char * to a buffer that the libcurl may store human readable error
394 messages in. This may be more helpful than just the return code from
395 \fIcurl_easy_perform\fP. The buffer must be at least CURL_ERROR_SIZE big.
396 Although this argument is a 'char *', it does not describe an input string.
397 Therefore the (probably undefined) contents of the buffer is NOT copied
398 by the library. You should keep the associated storage available until
399 libcurl no longer needs it. Failing to do so will cause very odd behavior
400 or even crashes. libcurl will need it until you call \fIcurl_easy_cleanup(3)\fP
401 or you set the same option again to use a different pointer. 
403 Use \fICURLOPT_VERBOSE\fP and \fICURLOPT_DEBUGFUNCTION\fP to better
404 debug/trace why errors happen.
406 If the library does not return an error, the buffer may not have been
407 touched. Do not rely on the contents in those cases.
409 .IP CURLOPT_STDERR
410 Pass a FILE * as parameter. Tell libcurl to use this stream instead of stderr
411 when showing the progress meter and displaying \fICURLOPT_VERBOSE\fP data.
412 .IP CURLOPT_FAILONERROR
413 A parameter set to 1 tells the library to fail silently if the HTTP code
414 returned is equal to or larger than 400. The default action would be to return
415 the page normally, ignoring that code.
417 This method is not fail-safe and there are occasions where non-successful
418 response codes will slip through, especially when authentication is involved
419 (response codes 401 and 407).
421 You might get some amounts of headers transferred before this situation is
422 detected, like for when a "100-continue" is received as a response to a
423 POST/PUT and a 401 or 407 is received immediately afterwards.
424 .SH NETWORK OPTIONS
425 .IP CURLOPT_URL
426 The actual URL to deal with. The parameter should be a char * to a zero
427 terminated string.
429 If the given URL lacks the protocol part ("http://" or "ftp://" etc), it will
430 attempt to guess which protocol to use based on the given host name. If the
431 given protocol of the set URL is not supported, libcurl will return on error
432 (\fICURLE_UNSUPPORTED_PROTOCOL\fP) when you call \fIcurl_easy_perform(3)\fP or
433 \fIcurl_multi_perform(3)\fP. Use \fIcurl_version_info(3)\fP for detailed info
434 on which protocols that are supported.
436 The string given to CURLOPT_URL must be url-encoded and following the RFC 2396
437 (http://curl.haxx.se/rfc/rfc2396.txt).
439 \fICURLOPT_URL\fP is the only option that \fBmust\fP be set before
440 \fIcurl_easy_perform(3)\fP is called.
441 .IP CURLOPT_PROXY
442 Set HTTP proxy to use. The parameter should be a char * to a zero terminated
443 string holding the host name or dotted IP address. To specify port number in
444 this string, append :[port] to the end of the host name. The proxy string may
445 be prefixed with [protocol]:// since any such prefix will be ignored. The
446 proxy's port number may optionally be specified with the separate option
447 \fICURLOPT_PROXYPORT\fP.
449 When you tell the library to use an HTTP proxy, libcurl will transparently
450 convert operations to HTTP even if you specify an FTP URL etc. This may have
451 an impact on what other features of the library you can use, such as
452 \fICURLOPT_QUOTE\fP and similar FTP specifics that don't work unless you
453 tunnel through the HTTP proxy. Such tunneling is activated with
454 \fICURLOPT_HTTPPROXYTUNNEL\fP.
456 libcurl respects the environment variables \fBhttp_proxy\fP, \fBftp_proxy\fP,
457 \fBall_proxy\fP etc, if any of those is set. The \fICURLOPT_PROXY\fP option
458 does however override any possibly set environment variables.
460 Setting the proxy string to "" (an empty string) will explicitly disable the
461 use of a proxy, even if there is an environment variable set for it.
463 Since 7.14.1, the proxy host string given in environment variables can be
464 specified the exact same way as the proxy can be set with \fICURLOPT_PROXY\fP,
465 include protocol prefix (http://) and embedded user + password.
466 .IP CURLOPT_PROXYPORT
467 Pass a long with this option to set the proxy port to connect to unless it is
468 specified in the proxy string \fICURLOPT_PROXY\fP.
469 .IP CURLOPT_PROXYTYPE
470 Pass a long with this option to set type of the proxy. Available options for
471 this are \fICURLPROXY_HTTP\fP, \fICURLPROXY_SOCKS4\fP (added in 7.15.2),
472 \fICURLPROXY_SOCKS5\fP, \fICURLPROXY_SOCKS4A\fP (added in 7.18.0) and
473 \fICURLPROXY_SOCKS5_HOSTNAME\fP (added in 7.18.0). The HTTP type is
474 default. (Added in 7.10)
475 .IP CURLOPT_HTTPPROXYTUNNEL
476 Set the parameter to 1 to make the library tunnel all operations through a
477 given HTTP proxy. There is a big difference between using a proxy and to
478 tunnel through it. If you don't know what this means, you probably don't want
479 this tunneling option.
480 .IP CURLOPT_SOCKS5_RESOLVE_LOCAL
481 Set the parameter to 1 to make the library to resolve the host name locally
482 instead of passing it to the proxy to resolve, when using a SOCKS5 proxy.
484 Note that libcurl before 7.18.0 always resolved the host name locally even
485 when SOCKS5 was used. (Added in 7.18.0)
486 .IP CURLOPT_INTERFACE
487 Pass a char * as parameter. This set the interface name to use as outgoing
488 network interface. The name can be an interface name, an IP address or a host
489 name.
490 .IP CURLOPT_LOCALPORT
491 Pass a long. This sets the local port number of the socket used for
492 connection. This can be used in combination with \fICURLOPT_INTERFACE\fP and
493 you are recommended to use \fICURLOPT_LOCALPORTRANGE\fP as well when this is
494 set. Note that port numbers are only valid 1 - 65535. (Added in 7.15.2)
495 .IP CURLOPT_LOCALPORTRANGE
496 Pass a long. This is the number of attempts libcurl should do to find a
497 working local port number. It starts with the given \fICURLOPT_LOCALPORT\fP
498 and adds one to the number for each retry. Setting this to 1 or below will
499 make libcurl do only one try for the exact port number. Note that port numbers
500 by nature are scarce resources that will be busy at times so setting this
501 value to something too low might cause unnecessary connection setup
502 failures. (Added in 7.15.2)
503 .IP CURLOPT_DNS_CACHE_TIMEOUT
504 Pass a long, this sets the timeout in seconds. Name resolves will be kept in
505 memory for this number of seconds. Set to zero to completely disable
506 caching, or set to -1 to make the cached entries remain forever. By default,
507 libcurl caches this info for 60 seconds.
509 NOTE: the name resolve functions of various libc implementations don't re-read
510 name server information unless explicitly told so (by for example calling
511 \fIres_init(3)\fP. This may cause libcurl to keep using the older server even
512 if DHCP has updated the server info, and this may look like a DNS cache issue
513 to the casual libcurl-app user.
514 .IP CURLOPT_DNS_USE_GLOBAL_CACHE
515 Pass a long. If the value is 1, it tells curl to use a global DNS cache
516 that will survive between easy handle creations and deletions. This is not
517 thread-safe and this will use a global variable.
519 \fBWARNING:\fP this option is considered obsolete. Stop using it. Switch over
520 to using the share interface instead! See \fICURLOPT_SHARE\fP and
521 \fIcurl_share_init(3)\fP.
522 .IP CURLOPT_BUFFERSIZE
523 Pass a long specifying your preferred size (in bytes) for the receive buffer
524 in libcurl.  The main point of this would be that the write callback gets
525 called more often and with smaller chunks. This is just treated as a request,
526 not an order. You cannot be guaranteed to actually get the given size. (Added
527 in 7.10)
529 This size is by default set as big as possible (CURL_MAX_WRITE_SIZE), so it
530 only makes sense to use this option if you want it smaller.
531 .IP CURLOPT_PORT
532 Pass a long specifying what remote port number to connect to, instead of the
533 one specified in the URL or the default port for the used protocol.
534 .IP CURLOPT_TCP_NODELAY
535 Pass a long specifying whether the TCP_NODELAY option should be set or
536 cleared (1 = set, 0 = clear). The option is cleared by default. This
537 will have no effect after the connection has been established.
539 Setting this option will disable TCP's Nagle algorithm. The purpose of
540 this algorithm is to try to minimize the number of small packets on
541 the network (where "small packets" means TCP segments less than the
542 Maximum Segment Size (MSS) for the network).
544 Maximizing the amount of data sent per TCP segment is good because it
545 amortizes the overhead of the send. However, in some cases (most
546 notably telnet or rlogin) small segments may need to be sent
547 without delay. This is less efficient than sending larger amounts of
548 data at a time, and can contribute to congestion on the network if
549 overdone.
550 .IP CURLOPT_ADDRESS_SCOPE
551 Pass a long specifying the scope_id value to use when connecting to IPv6
552 link-local or site-local addresses.
553 .SH NAMES and PASSWORDS OPTIONS (Authentication)
554 .IP CURLOPT_NETRC
555 This parameter controls the preference of libcurl between using user names and
556 passwords from your \fI~/.netrc\fP file, relative to user names and passwords
557 in the URL supplied with \fICURLOPT_URL\fP.
559 libcurl uses a user name (and supplied or prompted password) supplied with
560 \fICURLOPT_USERPWD\fP in preference to any of the options controlled by this
561 parameter.
563 Pass a long, set to one of the values described below.
565 .IP CURL_NETRC_OPTIONAL
566 The use of your \fI~/.netrc\fP file is optional, and information in the URL is
567 to be preferred.  The file will be scanned with the host and user name (to
568 find the password only) or with the host only, to find the first user name and
569 password after that \fImachine\fP, which ever information is not specified in
570 the URL.
572 Undefined values of the option will have this effect.
573 .IP CURL_NETRC_IGNORED
574 The library will ignore the file and use only the information in the URL.
576 This is the default.
577 .IP CURL_NETRC_REQUIRED
578 This value tells the library that use of the file is required, to ignore the
579 information in the URL, and to search the file with the host only.
581 Only machine name, user name and password are taken into account
582 (init macros and similar things aren't supported).
584 libcurl does not verify that the file has the correct properties set (as the
585 standard Unix ftp client does). It should only be readable by user.
586 .IP CURLOPT_NETRC_FILE
587 Pass a char * as parameter, pointing to a zero terminated string containing
588 the full path name to the file you want libcurl to use as .netrc file. If this
589 option is omitted, and \fICURLOPT_NETRC\fP is set, libcurl will attempt to
590 find a .netrc file in the current user's home directory. (Added in 7.10.9)
591 .IP CURLOPT_USERPWD
592 Pass a char * as parameter, which should be [user name]:[password] to use for
593 the connection. Use \fICURLOPT_HTTPAUTH\fP to decide authentication method.
595 When using NTLM, you can set domain by prepending it to the user name and
596 separating the domain and name with a forward (/) or backward slash (\\). Like
597 this: "domain/user:password" or "domain\\user:password". Some HTTP servers (on
598 Windows) support this style even for Basic authentication.
600 When using HTTP and \fICURLOPT_FOLLOWLOCATION\fP, libcurl might perform
601 several requests to possibly different hosts. libcurl will only send this user
602 and password information to hosts using the initial host name (unless
603 \fICURLOPT_UNRESTRICTED_AUTH\fP is set), so if libcurl follows locations to
604 other hosts it will not send the user and password to those. This is enforced
605 to prevent accidental information leakage.
606 .IP CURLOPT_PROXYUSERPWD
607 Pass a char * as parameter, which should be [user name]:[password] to use for
608 the connection to the HTTP proxy.  Use \fICURLOPT_PROXYAUTH\fP to decide
609 authentication method.
610 .IP CURLOPT_HTTPAUTH
611 Pass a long as parameter, which is set to a bitmask, to tell libcurl what
612 authentication method(s) you want it to use. The available bits are listed
613 below. If more than one bit is set, libcurl will first query the site to see
614 what authentication methods it supports and then pick the best one you allow
615 it to use. For some methods, this will induce an extra network round-trip. Set
616 the actual name and password with the \fICURLOPT_USERPWD\fP option. (Added in
617 7.10.6)
619 .IP CURLAUTH_BASIC
620 HTTP Basic authentication. This is the default choice, and the only method
621 that is in wide-spread use and supported virtually everywhere. This is sending
622 the user name and password over the network in plain text, easily captured by
623 others.
624 .IP CURLAUTH_DIGEST
625 HTTP Digest authentication.  Digest authentication is defined in RFC2617 and
626 is a more secure way to do authentication over public networks than the
627 regular old-fashioned Basic method.
628 .IP CURLAUTH_GSSNEGOTIATE
629 HTTP GSS-Negotiate authentication. The GSS-Negotiate (also known as plain
630 \&"Negotiate") method was designed by Microsoft and is used in their web
631 applications. It is primarily meant as a support for Kerberos5 authentication
632 but may be also used along with another authentication methods. For more
633 information see IETF draft draft-brezak-spnego-http-04.txt.
635 You need to build libcurl with a suitable GSS-API library for this to work.
636 .IP CURLAUTH_NTLM
637 HTTP NTLM authentication. A proprietary protocol invented and used by
638 Microsoft. It uses a challenge-response and hash concept similar to Digest, to
639 prevent the password from being eavesdropped.
641 You need to build libcurl with OpenSSL support for this option to work, or
642 build libcurl on Windows.
643 .IP CURLAUTH_ANY
644 This is a convenience macro that sets all bits and thus makes libcurl pick any
645 it finds suitable. libcurl will automatically select the one it finds most
646 secure.
647 .IP CURLAUTH_ANYSAFE
648 This is a convenience macro that sets all bits except Basic and thus makes
649 libcurl pick any it finds suitable. libcurl will automatically select the one it
650 finds most secure.
652 .IP CURLOPT_PROXYAUTH
653 Pass a long as parameter, which is set to a bitmask, to tell libcurl what
654 authentication method(s) you want it to use for your proxy authentication.  If
655 more than one bit is set, libcurl will first query the site to see what
656 authentication methods it supports and then pick the best one you allow it to
657 use. For some methods, this will induce an extra network round-trip. Set the
658 actual name and password with the \fICURLOPT_PROXYUSERPWD\fP option. The
659 bitmask can be constructed by or'ing together the bits listed above for the
660 \fICURLOPT_HTTPAUTH\fP option. As of this writing, only Basic, Digest and NTLM
661 work. (Added in 7.10.7)
662 .SH HTTP OPTIONS
663 .IP CURLOPT_AUTOREFERER
664 Pass a parameter set to 1 to enable this. When enabled, libcurl will
665 automatically set the Referer: field in requests where it follows a Location:
666 redirect.
667 .IP CURLOPT_ENCODING
668 Sets the contents of the Accept-Encoding: header sent in an HTTP request, and
669 enables decoding of a response when a Content-Encoding: header is received.
670 Three encodings are supported: \fIidentity\fP, which does nothing,
671 \fIdeflate\fP which requests the server to compress its response using the
672 zlib algorithm, and \fIgzip\fP which requests the gzip algorithm.  If a
673 zero-length string is set, then an Accept-Encoding: header containing all
674 supported encodings is sent.
676 This is a request, not an order; the server may or may not do it.  This option
677 must be set (to any non-NULL value) or else any unsolicited encoding done by
678 the server is ignored. See the special file lib/README.encoding for details.
679 .IP CURLOPT_FOLLOWLOCATION
680 A parameter set to 1 tells the library to follow any Location: header that the
681 server sends as part of an HTTP header.
683 This means that the library will re-send the same request on the new location
684 and follow new Location: headers all the way until no more such headers are
685 returned. \fICURLOPT_MAXREDIRS\fP can be used to limit the number of redirects
686 libcurl will follow.
687 .IP CURLOPT_UNRESTRICTED_AUTH
688 A parameter set to 1 tells the library it can continue to send authentication
689 (user+password) when following locations, even when hostname changed. This
690 option is meaningful only when setting \fICURLOPT_FOLLOWLOCATION\fP.
691 .IP CURLOPT_MAXREDIRS
692 Pass a long. The set number will be the redirection limit. If that many
693 redirections have been followed, the next redirect will cause an error
694 (\fICURLE_TOO_MANY_REDIRECTS\fP). This option only makes sense if the
695 \fICURLOPT_FOLLOWLOCATION\fP is used at the same time. Added in 7.15.1:
696 Setting the limit to 0 will make libcurl refuse any redirect. Set it to -1 for
697 an infinite number of redirects (which is the default)
698 .IP CURLOPT_POST301
699 A parameter set to 1 tells the library to respect RFC 2616/10.3.2 and not
700 convert POST requests into GET requests when following a 301 redirection. The
701 non-RFC behaviour is ubiquitous in web browsers, so the library does the
702 conversion by default to maintain consistency. However, a server may requires
703 a POST to remain a POST after such a redirection. This option is meaningful
704 only when setting \fICURLOPT_FOLLOWLOCATION\fP.  (Added in 7.17.1)
705 .IP CURLOPT_PUT
706 A parameter set to 1 tells the library to use HTTP PUT to transfer data. The
707 data should be set with \fICURLOPT_READDATA\fP and \fICURLOPT_INFILESIZE\fP.
709 This option is deprecated and starting with version 7.12.1 you should instead
710 use \fICURLOPT_UPLOAD\fP.
711 .IP CURLOPT_POST
712 A parameter set to 1 tells the library to do a regular HTTP post. This will
713 also make the library use a "Content-Type:
714 application/x-www-form-urlencoded" header. (This is by far the most commonly
715 used POST method).
717 Use one of \fICURLOPT_POSTFIELDS\fP or \fICURLOPT_COPYPOSTFIELDS\fP options to
718 specify what data to post and \fICURLOPT_POSTFIELDSIZE\fP or
719 \fICURLOPT_POSTFIELDSIZE_LARGE\fP to set the data size.
721 Optionally, you can provide data to POST using the \fICURLOPT_READFUNCTION\fP
722 and \fICURLOPT_READDATA\fP options but then you must make sure to not set
723 \fICURLOPT_POSTFIELDS\fP to anything but NULL. When providing data with a
724 callback, you must transmit it using chunked transfer-encoding or you must set
725 the size of the data with the \fICURLOPT_POSTFIELDSIZE\fP or
726 \fICURLOPT_POSTFIELDSIZE_LARGE\fP option. To enable chunked encoding, you
727 simply pass in the appropriate Transfer-Encoding header, see the
728 post-callback.c example.
730 You can override the default POST Content-Type: header by setting your own
731 with \fICURLOPT_HTTPHEADER\fP.
733 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
734 You can disable this header with \fICURLOPT_HTTPHEADER\fP as usual.
736 If you use POST to a HTTP 1.1 server, you can send data without knowing the
737 size before starting the POST if you use chunked encoding. You enable this by
738 adding a header like "Transfer-Encoding: chunked" with
739 \fICURLOPT_HTTPHEADER\fP. With HTTP 1.0 or without chunked transfer, you must
740 specify the size in the request.
742 When setting \fICURLOPT_POST\fP to 1, it will automatically set
743 \fICURLOPT_NOBODY\fP to 0 (since 7.14.1).
745 If you issue a POST request and then want to make a HEAD or GET using the same
746 re-used handle, you must explicitly set the new request type using
747 \fICURLOPT_NOBODY\fP or \fICURLOPT_HTTPGET\fP or similar.
748 .IP CURLOPT_POSTFIELDS
749 Pass a void * as parameter, which should be the full data to post in an HTTP
750 POST operation. You must make sure that the data is formatted the way you want
751 the server to receive it. libcurl will not convert or encode it for you. Most
752 web servers will assume this data to be url-encoded. Take note.
754 The pointed data are NOT copied by the library: as a consequence, they must
755 be preserved by the calling application until the transfer finishes.
757 This POST is a normal application/x-www-form-urlencoded kind (and libcurl will
758 set that Content-Type by default when this option is used), which is the most
759 commonly used one by HTML forms. See also the \fICURLOPT_POST\fP. Using
760 \fICURLOPT_POSTFIELDS\fP implies \fICURLOPT_POST\fP.
762 If you want to do a zero-byte POST, you need to set
763 \fICURLOPT_POSTFIELDSIZE\fP explicitly to zero, as simply setting
764 \fICURLOPT_POSTFIELDS\fP to NULL or "" just effectively disables the sending
765 of the specified string. libcurl will instead assume that you'll send the POST
766 data using the read callback!
768 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
769 You can disable this header with \fICURLOPT_HTTPHEADER\fP as usual.
771 To make multipart/formdata posts (aka rfc1867-posts), check out the
772 \fICURLOPT_HTTPPOST\fP option.
773 .IP CURLOPT_POSTFIELDSIZE
774 If you want to post data to the server without letting libcurl do a strlen()
775 to measure the data size, this option must be used. When this option is used
776 you can post fully binary data, which otherwise is likely to fail. If this
777 size is set to -1, the library will use strlen() to get the size.
778 .IP CURLOPT_POSTFIELDSIZE_LARGE
779 Pass a curl_off_t as parameter. Use this to set the size of the
780 \fICURLOPT_POSTFIELDS\fP data to prevent libcurl from doing strlen() on the
781 data to figure out the size. This is the large file version of the
782 \fICURLOPT_POSTFIELDSIZE\fP option. (Added in 7.11.1)
783 .IP CURLOPT_COPYPOSTFIELDS
784 Pass a char * as parameter, which should be the full data to post in an HTTP
785 POST operation. It behaves as the \fICURLOPT_POSTFIELDS\fP option, but the
786 original data are copied by the library, allowing the application to overwrite
787 the original data after setting this option.
789 Because data are copied, care must be taken when using this option in
790 conjunction with \fICURLOPT_POSTFIELDSIZE\fP or
791 \fICURLOPT_POSTFIELDSIZE_LARGE\fP: If the size has not been set prior to
792 \fICURLOPT_COPYPOSTFIELDS\fP, the data are assumed to be a NUL-terminated
793 string; else the stored size informs the library about the data byte count to
794 copy. In any case, the size must not be changed after
795 \fICURLOPT_COPYPOSTFIELDS\fP, unless another \fICURLOPT_POSTFIELDS\fP or
796 \fICURLOPT_COPYPOSTFIELDS\fP option is issued.
797 (Added in 7.17.1)
799 .IP CURLOPT_HTTPPOST
800 Tells libcurl you want a multipart/formdata HTTP POST to be made and you
801 instruct what data to pass on to the server.  Pass a pointer to a linked list
802 of curl_httppost structs as parameter. . The easiest way to create such a
803 list, is to use \fIcurl_formadd(3)\fP as documented. The data in this list
804 must remain intact until you close this curl handle again with
805 \fIcurl_easy_cleanup(3)\fP.
807 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
808 You can disable this header with \fICURLOPT_HTTPHEADER\fP as usual.
810 When setting \fICURLOPT_HTTPPOST\fP, it will automatically set
811 \fICURLOPT_NOBODY\fP to 0 (since 7.14.1).
812 .IP CURLOPT_REFERER
813 Pass a pointer to a zero terminated string as parameter. It will be used to
814 set the Referer: header in the http request sent to the remote server. This
815 can be used to fool servers or scripts. You can also set any custom header
816 with \fICURLOPT_HTTPHEADER\fP.
817 .IP CURLOPT_USERAGENT
818 Pass a pointer to a zero terminated string as parameter. It will be used to
819 set the User-Agent: header in the http request sent to the remote server. This
820 can be used to fool servers or scripts. You can also set any custom header
821 with \fICURLOPT_HTTPHEADER\fP.
822 .IP CURLOPT_HTTPHEADER
823 Pass a pointer to a linked list of HTTP headers to pass to the server in your
824 HTTP request. The linked list should be a fully valid list of \fBstruct
825 curl_slist\fP structs properly filled in. Use \fIcurl_slist_append(3)\fP to
826 create the list and \fIcurl_slist_free_all(3)\fP to clean up an entire
827 list. If you add a header that is otherwise generated and used by libcurl
828 internally, your added one will be used instead. If you add a header with no
829 contents as in 'Accept:' (no data on the right side of the colon), the
830 internally used header will get disabled. Thus, using this option you can add
831 new headers, replace internal headers and remove internal headers. To add a
832 header with no contents, make the contents be two quotes: \&"". The headers
833 included in the linked list must not be CRLF-terminated, because curl adds
834 CRLF after each header item. Failure to comply with this will result in
835 strange bugs because the server will most likely ignore part of the headers
836 you specified.
838 The first line in a request (containing the method, usually a GET or POST) is
839 not a header and cannot be replaced using this option. Only the lines
840 following the request-line are headers. Adding this method line in this list
841 of headers will only cause your request to send an invalid header.
843 Pass a NULL to this to reset back to no custom headers.
845 The most commonly replaced headers have "shortcuts" in the options
846 \fICURLOPT_COOKIE\fP, \fICURLOPT_USERAGENT\fP and \fICURLOPT_REFERER\fP.
847 .IP CURLOPT_HTTP200ALIASES
848 Pass a pointer to a linked list of aliases to be treated as valid HTTP 200
849 responses.  Some servers respond with a custom header response line.  For
850 example, IceCast servers respond with "ICY 200 OK".  By including this string
851 in your list of aliases, the response will be treated as a valid HTTP header
852 line such as "HTTP/1.0 200 OK". (Added in 7.10.3)
854 The linked list should be a fully valid list of struct curl_slist structs, and
855 be properly filled in.  Use \fIcurl_slist_append(3)\fP to create the list and
856 \fIcurl_slist_free_all(3)\fP to clean up an entire list.
858 The alias itself is not parsed for any version strings. Before libcurl 7.16.3,
859 Libcurl used the value set by option \fICURLOPT_HTTP_VERSION\fP, but starting
860 with 7.16.3 the protocol is assumed to match HTTP 1.0 when an alias matched.
861 .IP CURLOPT_COOKIE
862 Pass a pointer to a zero terminated string as parameter. It will be used to
863 set a cookie in the http request. The format of the string should be
864 NAME=CONTENTS, where NAME is the cookie name and CONTENTS is what the cookie
865 should contain.
867 If you need to set multiple cookies, you need to set them all using a single
868 option and thus you need to concatenate them all in one single string. Set
869 multiple cookies in one string like this: "name1=content1; name2=content2;"
870 etc.
872 Note that this option sets the cookie header explictly in the outgoing
873 request(s). If multiple requests are done due to authentication, followed
874 redirections or similar, they will all get this cookie passed on.
876 Using this option multiple times will only make the latest string override the
877 previous ones.
878 .IP CURLOPT_COOKIEFILE
879 Pass a pointer to a zero terminated string as parameter. It should contain the
880 name of your file holding cookie data to read. The cookie data may be in
881 Netscape / Mozilla cookie data format or just regular HTTP-style headers
882 dumped to a file.
884 Given an empty or non-existing file or by passing the empty string (""), this
885 option will enable cookies for this curl handle, making it understand and
886 parse received cookies and then use matching cookies in future request.
888 If you use this option multiple times, you just add more files to read.
889 Subsequent files will add more cookies.
890 .IP CURLOPT_COOKIEJAR
891 Pass a file name as char *, zero terminated. This will make libcurl write all
892 internally known cookies to the specified file when \fIcurl_easy_cleanup(3)\fP
893 is called. If no cookies are known, no file will be created. Specify "-" to
894 instead have the cookies written to stdout. Using this option also enables
895 cookies for this session, so if you for example follow a location it will make
896 matching cookies get sent accordingly.
898 If the cookie jar file can't be created or written to (when the
899 \fIcurl_easy_cleanup(3)\fP is called), libcurl will not and cannot report an
900 error for this. Using \fICURLOPT_VERBOSE\fP or \fICURLOPT_DEBUGFUNCTION\fP
901 will get a warning to display, but that is the only visible feedback you get
902 about this possibly lethal situation.
903 .IP CURLOPT_COOKIESESSION
904 Pass a long set to 1 to mark this as a new cookie "session". It will force
905 libcurl to ignore all cookies it is about to load that are "session cookies"
906 from the previous session. By default, libcurl always stores and loads all
907 cookies, independent if they are session cookies are not. Session cookies are
908 cookies without expiry date and they are meant to be alive and existing for
909 this "session" only.
910 .IP CURLOPT_COOKIELIST
911 Pass a char * to a cookie string. Cookie can be either in Netscape / Mozilla
912 format or just regular HTTP-style header (Set-Cookie: ...) format. If cURL
913 cookie engine was not enabled it will enable its cookie engine.  Passing a
914 magic string \&"ALL" will erase all cookies known by cURL. (Added in 7.14.1)
915 Passing the special string \&"SESS" will only erase all session cookies known
916 by cURL. (Added in 7.15.4) Passing the special string \&"FLUSH" will write
917 all cookies known by cURL to the file specified by \fICURLOPT_COOKIEJAR\fP.
918 (Added in 7.17.1)
919 .IP CURLOPT_HTTPGET
920 Pass a long. If the long is 1, this forces the HTTP request to get back
921 to GET. usable if a POST, HEAD, PUT or a custom request have been used
922 previously using the same curl handle.
924 When setting \fICURLOPT_HTTPGET\fP to 1, it will automatically set
925 \fICURLOPT_NOBODY\fP to 0 (since 7.14.1).
926 .IP CURLOPT_HTTP_VERSION
927 Pass a long, set to one of the values described below. They force libcurl to
928 use the specific HTTP versions. This is not sensible to do unless you have a
929 good reason.
931 .IP CURL_HTTP_VERSION_NONE
932 We don't care about what version the library uses. libcurl will use whatever
933 it thinks fit.
934 .IP CURL_HTTP_VERSION_1_0
935 Enforce HTTP 1.0 requests.
936 .IP CURL_HTTP_VERSION_1_1
937 Enforce HTTP 1.1 requests.
939 .IP CURLOPT_IGNORE_CONTENT_LENGTH
940 Ignore the Content-Length header. This is useful for Apache 1.x (and similar
941 servers) which will report incorrect content length for files over 2
942 gigabytes. If this option is used, curl will not be able to accurately report
943 progress, and will simply stop the download when the server ends the
944 connection. (added in 7.14.1)
945 .IP CURLOPT_HTTP_CONTENT_DECODING
946 Pass a long to tell libcurl how to act on content decoding. If set to zero,
947 content decoding will be disabled. If set to 1 it is enabled. Note however
948 that libcurl has no default content decoding but requires you to use
949 \fICURLOPT_ENCODING\fP for that. (added in 7.16.2)
950 .IP CURLOPT_HTTP_TRANSFER_DECODING
951 Pass a long to tell libcurl how to act on transfer decoding. If set to zero,
952 transfer decoding will be disabled, if set to 1 it is enabled
953 (default). libcurl does chunked transfer decoding by default unless this
954 option is set to zero. (added in 7.16.2)
955 .SH FTP OPTIONS
956 .IP CURLOPT_FTPPORT
957 Pass a pointer to a zero terminated string as parameter. It will be used to
958 get the IP address to use for the ftp PORT instruction. The PORT instruction
959 tells the remote server to connect to our specified IP address. The string may
960 be a plain IP address, a host name, an network interface name (under Unix) or
961 just a '-' letter to let the library use your systems default IP
962 address. Default FTP operations are passive, and thus won't use PORT.
964 You disable PORT again and go back to using the passive version by setting
965 this option to NULL.
966 .IP CURLOPT_QUOTE
967 Pass a pointer to a linked list of FTP or SFTP commands to pass to
968 the server prior to your ftp request. This will be done before any
969 other commands are issued (even before the CWD command for FTP). The
970 linked list should be a fully valid list of 'struct curl_slist' structs
971 properly filled in with text strings. Use \fIcurl_slist_append(3)\fP
972 to append strings (commands) to the list, and clear the entire list
973 afterwards with \fIcurl_slist_free_all(3)\fP. Disable this operation
974 again by setting a NULL to this option.
975 The set of valid FTP commands depends on the server (see RFC959 for a
976 list of mandatory commands).
977 The valid SFTP commands are: chgrp, chmod, chown, ln, mkdir, pwd,
978 rename, rm, rmdir, symlink (see
979 .BR curl (1))
980 (SFTP support added in 7.16.3)
981 .IP CURLOPT_POSTQUOTE
982 Pass a pointer to a linked list of FTP or SFTP commands to pass to the
983 server after your ftp transfer request. The linked list should be a
984 fully valid list of struct curl_slist structs properly filled in as
985 described for \fICURLOPT_QUOTE\fP. Disable this operation again by
986 setting a NULL to this option.
987 .IP CURLOPT_PREQUOTE
988 Pass a pointer to a linked list of FTP commands to pass to the server after
989 the transfer type is set. The linked list should be a fully valid list of
990 struct curl_slist structs properly filled in as described for
991 \fICURLOPT_QUOTE\fP. Disable this operation again by setting a NULL to this
992 option. Before version 7.15.6, if you also set \fICURLOPT_NOBODY\fP to 1, this
993 option didn't work.
994 .IP CURLOPT_DIRLISTONLY
995 A parameter set to 1 tells the library to just list the names of files in a
996 directory, instead of doing a full directory listing that would include file
997 sizes, dates etc. This works for FTP and SFTP URLs.
999 This causes an FTP NLST command to be sent on an FTP server.  Beware
1000 that some FTP servers list only files in their response to NLST; they
1001 might not include subdirectories and symbolic links.
1003 (This option was known as CURLOPT_FTPLISTONLY up to 7.16.4)
1004 .IP CURLOPT_APPEND
1005 A parameter set to 1 tells the library to append to the remote file instead of
1006 overwrite it. This is only useful when uploading to an ftp site.
1008 (This option was known as CURLOPT_FTPAPPEND up to 7.16.4)
1009 .IP CURLOPT_FTP_USE_EPRT
1010 Pass a long. If the value is 1, it tells curl to use the EPRT (and
1011 LPRT) command when doing active FTP downloads (which is enabled by
1012 \fICURLOPT_FTPPORT\fP). Using EPRT means that it will first attempt to use
1013 EPRT and then LPRT before using PORT, but if you pass zero to this
1014 option, it will not try using EPRT or LPRT, only plain PORT. (Added in 7.10.5)
1016 If the server is an IPv6 host, this option will have no effect as of 7.12.3.
1017 .IP CURLOPT_FTP_USE_EPSV
1018 Pass a long. If the value is 1, it tells curl to use the EPSV command
1019 when doing passive FTP downloads (which it always does by default). Using EPSV
1020 means that it will first attempt to use EPSV before using PASV, but if you
1021 pass zero to this option, it will not try using EPSV, only plain PASV.
1023 If the server is an IPv6 host, this option will have no effect as of 7.12.3.
1024 .IP CURLOPT_FTP_CREATE_MISSING_DIRS
1025 Pass a long. If the value is 1, curl will attempt to create any remote
1026 directory that it fails to CWD into. CWD is the command that changes working
1027 directory. (Added in 7.10.7)
1029 This setting also applies to SFTP-connections. curl will attempt to create
1030 the remote directory if it can't obtain a handle to the target-location. The
1031 creation will fail if a file of the same name as the directory to create
1032 already exists or lack of permissions prevents creation. (Added in 7.16.3)
1033 .IP CURLOPT_FTP_RESPONSE_TIMEOUT
1034 Pass a long.  Causes curl to set a timeout period (in seconds) on the amount
1035 of time that the server is allowed to take in order to generate a response
1036 message for a command before the session is considered hung.  While curl is
1037 waiting for a response, this value overrides \fICURLOPT_TIMEOUT\fP. It is
1038 recommended that if used in conjunction with \fICURLOPT_TIMEOUT\fP, you set
1039 \fICURLOPT_FTP_RESPONSE_TIMEOUT\fP to a value smaller than
1040 \fICURLOPT_TIMEOUT\fP.  (Added in 7.10.8)
1041 .IP CURLOPT_FTP_ALTERNATIVE_TO_USER
1042 Pass a char * as parameter, pointing to a string which will be used to
1043 authenticate if the usual FTP "USER user" and "PASS password" negotiation
1044 fails. This is currently only known to be required when connecting to
1045 Tumbleweed's Secure Transport FTPS server using client certificates for
1046 authentication. (Added in 7.15.5)
1047 .IP CURLOPT_FTP_SKIP_PASV_IP
1048 Pass a long. If set to 1, it instructs libcurl to not use the IP address the
1049 server suggests in its 227-response to libcurl's PASV command when libcurl
1050 connects the data connection. Instead libcurl will re-use the same IP address
1051 it already uses for the control connection. But it will use the port number
1052 from the 227-response. (Added in 7.14.2)
1054 This option has no effect if PORT, EPRT or EPSV is used instead of PASV.
1055 .IP CURLOPT_USE_SSL
1056 Pass a long using one of the values from below, to make libcurl use your
1057 desired level of SSL for the ftp transfer. (Added in 7.11.0)
1059 (This option was known as CURLOPT_FTP_SSL up to 7.16.4, and the constants
1060 were known as CURLFTPSSL_*)
1062 .IP CURLUSESSL_NONE
1063 Don't attempt to use SSL.
1064 .IP CURLUSESSL_TRY
1065 Try using SSL, proceed as normal otherwise.
1066 .IP CURLUSESSL_CONTROL
1067 Require SSL for the control connection or fail with \fICURLE_USE_SSL_FAILED\fP.
1068 .IP CURLUSESSL_ALL
1069 Require SSL for all communication or fail with \fICURLE_USE_SSL_FAILED\fP.
1071 .IP CURLOPT_FTPSSLAUTH
1072 Pass a long using one of the values from below, to alter how libcurl issues
1073 \&"AUTH TLS" or "AUTH SSL" when FTP over SSL is activated (see
1074 \fICURLOPT_FTP_SSL\fP). (Added in 7.12.2)
1076 .IP CURLFTPAUTH_DEFAULT
1077 Allow libcurl to decide
1078 .IP CURLFTPAUTH_SSL
1079 Try "AUTH SSL" first, and only if that fails try "AUTH TLS"
1080 .IP CURLFTPAUTH_TLS
1081 Try "AUTH TLS" first, and only if that fails try "AUTH SSL"
1083 .IP CURLOPT_FTP_SSL_CCC
1084 If enabled, this option makes libcurl use CCC (Clear Command Channel). It
1085 shuts down the SSL/TLS layer after authenticating. The rest of the
1086 control channel communication will be unencrypted. This allows NAT routers
1087 to follow the FTP transaction. Pass a long using one of the values below.
1088 (Added in 7.16.1)
1090 .IP CURLFTPSSL_CCC_NONE
1091 Don't attempt to use CCC.
1092 .IP CURLFTPSSL_CCC_PASSIVE
1093 Do not initiate the shutdown, but wait for the server to do it. Do not send
1094 a reply.
1095 .IP CURLFTPSSL_CCC_ACTIVE
1096 Initiate the shutdown and wait for a reply.
1098 .IP CURLOPT_FTP_ACCOUNT
1099 Pass a pointer to a zero-terminated string (or NULL to disable). When an FTP
1100 server asks for "account data" after user name and password has been provided,
1101 this data is sent off using the ACCT command. (Added in 7.13.0)
1102 .IP CURLOPT_FTP_FILEMETHOD
1103 Pass a long that should have one of the following values. This option controls
1104 what method libcurl should use to reach a file on a FTP(S) server. The
1105 argument should be one of the following alternatives:
1107 .IP CURLFTPMETHOD_MULTICWD
1108 libcurl does a single CWD operation for each path part in the given URL. For
1109 deep hierarchies this means very many commands. This is how RFC1738 says it
1110 should be done. This is the default but the slowest behavior.
1111 .IP CURLFTPMETHOD_NOCWD
1112 libcurl does no CWD at all. libcurl will do SIZE, RETR, STOR etc and give a
1113 full path to the server for all these commands. This is the fastest behavior.
1114 .IP CURLFTPMETHOD_SINGLECWD
1115 libcurl does one CWD with the full target directory and then operates on the
1116 file \&"normally" (like in the multicwd case). This is somewhat more standards
1117 compliant than 'nocwd' but without the full penalty of 'multicwd'.
1119 .SH PROTOCOL OPTIONS
1120 .IP CURLOPT_TRANSFERTEXT
1121 A parameter set to 1 tells the library to use ASCII mode for ftp transfers,
1122 instead of the default binary transfer. For win32 systems it does not set the
1123 stdout to binary mode. This option can be usable when transferring text data
1124 between systems with different views on certain characters, such as newlines
1125 or similar.
1127 libcurl does not do a complete ASCII conversion when doing ASCII transfers
1128 over FTP. This is a known limitation/flaw that nobody has rectified. libcurl
1129 simply sets the mode to ascii and performs a standard transfer.
1130 .IP CURLOPT_PROXY_TRANSFER_MODE
1131 Pass a long. If the value is set to 1 (one), it tells libcurl to set the
1132 transfer mode (binary or ASCII) for FTP transfers done via an HTTP proxy, by
1133 appending ;type=a or ;type=i to the URL. Without this setting, or it being set
1134 to 0 (zero, the default), \fICURLOPT_TRANSFERTEXT\fP has no effect when doing
1135 FTP via a proxy. Beware that not all proxies support this feature.  (Added in
1136 7.18.0)
1137 .IP CURLOPT_CRLF
1138 Convert Unix newlines to CRLF newlines on transfers.
1139 .IP CURLOPT_RANGE
1140 Pass a char * as parameter, which should contain the specified range you
1141 want. It should be in the format "X-Y", where X or Y may be left out. HTTP
1142 transfers also support several intervals, separated with commas as in
1143 \fI"X-Y,N-M"\fP. Using this kind of multiple intervals will cause the HTTP
1144 server to send the response document in pieces (using standard MIME separation
1145 techniques). Pass a NULL to this option to disable the use of ranges.
1147 Ranges work on HTTP, FTP and FILE (since 7.18.0) transfers only.
1148 .IP CURLOPT_RESUME_FROM
1149 Pass a long as parameter. It contains the offset in number of bytes that you
1150 want the transfer to start from. Set this option to 0 to make the transfer
1151 start from the beginning (effectively disabling resume). For FTP, set this
1152 option to -1 to make the transfer start from the end of the target file
1153 (useful to continue an interrupted upload).
1154 .IP CURLOPT_RESUME_FROM_LARGE
1155 Pass a curl_off_t as parameter. It contains the offset in number of bytes that
1156 you want the transfer to start from. (Added in 7.11.0)
1157 .IP CURLOPT_CUSTOMREQUEST
1158 Pass a pointer to a zero terminated string as parameter. It will be used
1159 instead of GET or HEAD when doing an HTTP request, or instead of LIST or NLST
1160 when doing an ftp directory listing. This is useful for doing DELETE or other
1161 more or less obscure HTTP requests. Don't do this at will, make sure your
1162 server supports the command first.
1164 Note that libcurl will still act and assume the keyword it would use if you
1165 didn't set your custom one is the one in use and it will act according to
1166 that. Thus, changing this to a HEAD when libcurl otherwise would do a GET
1167 might cause libcurl to act funny, and similar. To switch to a proper HEAD, use
1168 \fICURLOPT_NOBODY\fP, to switch to a proper POST, use \fICURLOPT_POST\fP or
1169 \fICURLOPT_POSTFIELDS\fP and so on.
1171 Restore to the internal default by setting this to NULL.
1173 Many people have wrongly used this option to replace the entire request with
1174 their own, including multiple headers and POST contents. While that might work
1175 in many cases, it will cause libcurl to send invalid requests and it could
1176 possibly confuse the remote server badly. Use \fICURLOPT_POST\fP and
1177 \fICURLOPT_POSTFIELDS\fP to set POST data. Use \fICURLOPT_HTTPHEADER\fP to
1178 replace or extend the set of headers sent by libcurl. Use
1179 \fICURLOPT_HTTP_VERSION\fP to change HTTP version.
1180 .IP CURLOPT_FILETIME
1181 Pass a long. If it is 1, libcurl will attempt to get the modification date of
1182 the remote document in this operation. This requires that the remote server
1183 sends the time or replies to a time querying command. The
1184 \fIcurl_easy_getinfo(3)\fP function with the \fICURLINFO_FILETIME\fP argument
1185 can be used after a transfer to extract the received time (if any).
1186 .IP CURLOPT_NOBODY
1187 A parameter set to 1 tells the library to not include the body-part in the
1188 output. This is only relevant for protocols that have separate header and body
1189 parts. On HTTP(S) servers, this will make libcurl do a HEAD request.
1191 To change request to GET, you should use \fICURLOPT_HTTPGET\fP. Change request
1192 to POST with \fICURLOPT_POST\fP etc.
1193 .IP CURLOPT_INFILESIZE
1194 When uploading a file to a remote site, this option should be used to tell
1195 libcurl what the expected size of the infile is. This value should be passed
1196 as a long. See also \fICURLOPT_INFILESIZE_LARGE\fP.
1198 For uploading using SCP, this option or \fICURLOPT_INFILESIZE_LARGE\fP is
1199 mandatory.
1201 Note that this option does not limit how much data libcurl will actually send,
1202 as that is controlled entirely by what the read callback returns.
1203 .IP CURLOPT_INFILESIZE_LARGE
1204 When uploading a file to a remote site, this option should be used to tell
1205 libcurl what the expected size of the infile is.  This value should be passed
1206 as a curl_off_t. (Added in 7.11.0)
1208 For uploading using SCP, this option or \fICURLOPT_INFILESIZE\fP is mandatory.
1210 Note that this option does not limit how much data libcurl will actually send,
1211 as that is controlled entirely by what the read callback returns.
1212 .IP CURLOPT_UPLOAD
1213 A parameter set to 1 tells the library to prepare for an upload. The
1214 \fICURLOPT_READDATA\fP and \fICURLOPT_INFILESIZE\fP or
1215 \fICURLOPT_INFILESIZE_LARGE\fP options are also interesting for uploads. If
1216 the protocol is HTTP, uploading means using the PUT request unless you tell
1217 libcurl otherwise.
1219 Using PUT with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
1220 You can disable this header with \fICURLOPT_HTTPHEADER\fP as usual.
1222 If you use PUT to a HTTP 1.1 server, you can upload data without knowing the
1223 size before starting the transfer if you use chunked encoding. You enable this
1224 by adding a header like "Transfer-Encoding: chunked" with
1225 \fICURLOPT_HTTPHEADER\fP. With HTTP 1.0 or without chunked transfer, you must
1226 specify the size.
1227 .IP CURLOPT_MAXFILESIZE
1228 Pass a long as parameter. This allows you to specify the maximum size (in
1229 bytes) of a file to download. If the file requested is larger than this value,
1230 the transfer will not start and CURLE_FILESIZE_EXCEEDED will be returned.
1232 The file size is not always known prior to download, and for such files this
1233 option has no effect even if the file transfer ends up being larger than this
1234 given limit. This concerns both FTP and HTTP transfers.
1235 .IP CURLOPT_MAXFILESIZE_LARGE
1236 Pass a curl_off_t as parameter. This allows you to specify the maximum size
1237 (in bytes) of a file to download. If the file requested is larger than this
1238 value, the transfer will not start and \fICURLE_FILESIZE_EXCEEDED\fP will be
1239 returned. (Added in 7.11.0)
1241 The file size is not always known prior to download, and for such files this
1242 option has no effect even if the file transfer ends up being larger than this
1243 given limit. This concerns both FTP and HTTP transfers.
1244 .IP CURLOPT_TIMECONDITION
1245 Pass a long as parameter. This defines how the \fICURLOPT_TIMEVALUE\fP time
1246 value is treated. You can set this parameter to \fICURL_TIMECOND_IFMODSINCE\fP
1247 or \fICURL_TIMECOND_IFUNMODSINCE\fP. This feature applies to HTTP and FTP.
1249 The last modification time of a file is not always known and in such instances
1250 this feature will have no effect even if the given time condition would have
1251 not been met.
1252 .IP CURLOPT_TIMEVALUE
1253 Pass a long as parameter. This should be the time in seconds since 1 jan 1970,
1254 and the time will be used in a condition as specified with
1255 \fICURLOPT_TIMECONDITION\fP.
1256 .SH CONNECTION OPTIONS
1257 .IP CURLOPT_TIMEOUT
1258 Pass a long as parameter containing the maximum time in seconds that you allow
1259 the libcurl transfer operation to take. Normally, name lookups can take a
1260 considerable time and limiting operations to less than a few minutes risk
1261 aborting perfectly normal operations. This option will cause curl to use the
1262 SIGALRM to enable time-outing system calls.
1264 In unix-like systems, this might cause signals to be used unless
1265 \fICURLOPT_NOSIGNAL\fP is set.
1266 .IP CURLOPT_TIMEOUT_MS
1267 Like \fICURLOPT_TIMEOUT\fP but takes number of milliseconds instead. If
1268 libcurl is built to use the standard system name resolver, that part will
1269 still use full-second resolution for timeouts. (Added in 7.16.2)
1270 .IP CURLOPT_LOW_SPEED_LIMIT
1271 Pass a long as parameter. It contains the transfer speed in bytes per second
1272 that the transfer should be below during \fICURLOPT_LOW_SPEED_TIME\fP seconds
1273 for the library to consider it too slow and abort.
1274 .IP CURLOPT_LOW_SPEED_TIME
1275 Pass a long as parameter. It contains the time in seconds that the transfer
1276 should be below the \fICURLOPT_LOW_SPEED_LIMIT\fP for the library to consider
1277 it too slow and abort.
1278 .IP CURLOPT_MAX_SEND_SPEED_LARGE
1279 Pass a curl_off_t as parameter.  If an upload exceeds this speed on cumulative
1280 average during the transfer, the transfer will pause to keep the average rate
1281 less than or equal to the parameter value.  Defaults to unlimited
1282 speed. (Added in 7.15.5)
1283 .IP CURLOPT_MAX_RECV_SPEED_LARGE
1284 Pass a curl_off_t as parameter.  If a download exceeds this speed on
1285 cumulative average during the transfer, the transfer will pause to keep the
1286 average rate less than or equal to the parameter value. Defaults to unlimited
1287 speed. (Added in 7.15.5)
1288 .IP CURLOPT_MAXCONNECTS
1289 Pass a long. The set number will be the persistent connection cache size. The
1290 set amount will be the maximum amount of simultaneously open connections that
1291 libcurl may cache in this easy handle. Default is 5, and there isn't much
1292 point in changing this value unless you are perfectly aware of how this work
1293 and changes libcurl's behaviour. This concerns connection using any of the
1294 protocols that support persistent connections.
1296 When reaching the maximum limit, curl closes the oldest one in the cache to
1297 prevent the number of open connections to increase.
1299 If you already have performed transfers with this curl handle, setting a
1300 smaller MAXCONNECTS than before may cause open connections to get closed
1301 unnecessarily.
1303 Note that if you add this easy handle to a multi handle, this setting is not
1304 being acknowledged, but you must instead use \fIcurl_multi_setopt(3)\fP and
1305 the \fICURLMOPT_MAXCONNECTS\fP option.
1306 .IP CURLOPT_CLOSEPOLICY
1307 (Obsolete) This option does nothing.
1308 .IP CURLOPT_FRESH_CONNECT
1309 Pass a long. Set to 1 to make the next transfer use a new (fresh) connection
1310 by force. If the connection cache is full before this connection, one of the
1311 existing connections will be closed as according to the selected or default
1312 policy. This option should be used with caution and only if you understand
1313 what it does. Set this to 0 to have libcurl attempt re-using an existing
1314 connection (default behavior).
1315 .IP CURLOPT_FORBID_REUSE
1316 Pass a long. Set to 1 to make the next transfer explicitly close the
1317 connection when done. Normally, libcurl keep all connections alive when done
1318 with one transfer in case there comes a succeeding one that can re-use them.
1319 This option should be used with caution and only if you understand what it
1320 does. Set to 0 to have libcurl keep the connection open for possibly later
1321 re-use (default behavior).
1322 .IP CURLOPT_CONNECTTIMEOUT
1323 Pass a long. It should contain the maximum time in seconds that you allow the
1324 connection to the server to take.  This only limits the connection phase, once
1325 it has connected, this option is of no more use. Set to zero to disable
1326 connection timeout (it will then only timeout on the system's internal
1327 timeouts). See also the \fICURLOPT_TIMEOUT\fP option.
1329 In unix-like systems, this might cause signals to be used unless
1330 \fICURLOPT_NOSIGNAL\fP is set.
1331 .IP CURLOPT_CONNECTTIMEOUT_MS
1332 Like \fICURLOPT_CONNECTTIMEOUT\fP but takes number of milliseconds instead. If
1333 libcurl is built to use the standard system name resolver, that part will
1334 still use full-second resolution for timeouts. (Added in 7.16.2)
1335 .IP CURLOPT_IPRESOLVE
1336 Allows an application to select what kind of IP addresses to use when
1337 resolving host names. This is only interesting when using host names that
1338 resolve addresses using more than one version of IP. The allowed values are:
1340 .IP CURL_IPRESOLVE_WHATEVER
1341 Default, resolves addresses to all IP versions that your system allows.
1342 .IP CURL_IPRESOLVE_V4
1343 Resolve to ipv4 addresses.
1344 .IP CURL_IPRESOLVE_V6
1345 Resolve to ipv6 addresses.
1347 .IP CURLOPT_CONNECT_ONLY
1348 Pass a long. If the parameter equals 1, it tells the library to perform all
1349 the required proxy authentication and connection setup, but no data transfer.
1351 This option is useful with the \fICURLINFO_LASTSOCKET\fP option to
1352 \fIcurl_easy_getinfo(3)\fP. The library can set up the connection and then the
1353 application can obtain the most recently used socket for special data
1354 transfers. (Added in 7.15.2)
1355 .SH SSL and SECURITY OPTIONS
1356 .IP CURLOPT_SSLCERT
1357 Pass a pointer to a zero terminated string as parameter. The string should be
1358 the file name of your certificate. The default format is "PEM" and can be
1359 changed with \fICURLOPT_SSLCERTTYPE\fP.
1361 With NSS this is the nickname of the certificate you wish to authenticate
1362 with.
1363 .IP CURLOPT_SSLCERTTYPE
1364 Pass a pointer to a zero terminated string as parameter. The string should be
1365 the format of your certificate. Supported formats are "PEM" and "DER".  (Added
1366 in 7.9.3)
1367 .IP CURLOPT_SSLKEY
1368 Pass a pointer to a zero terminated string as parameter. The string should be
1369 the file name of your private key. The default format is "PEM" and can be
1370 changed with \fICURLOPT_SSLKEYTYPE\fP.
1371 .IP CURLOPT_SSLKEYTYPE
1372 Pass a pointer to a zero terminated string as parameter. The string should be
1373 the format of your private key. Supported formats are "PEM", "DER" and "ENG".
1375 The format "ENG" enables you to load the private key from a crypto engine. In
1376 this case \fICURLOPT_SSLKEY\fP is used as an identifier passed to the
1377 engine. You have to set the crypto engine with \fICURLOPT_SSLENGINE\fP.
1378 \&"DER" format key file currently does not work because of a bug in OpenSSL.
1379 .IP CURLOPT_KEYPASSWD
1380 Pass a pointer to a zero terminated string as parameter. It will be used as
1381 the password required to use the \fICURLOPT_SSLKEY\fP or
1382 \fICURLOPT_SSH_PRIVATE_KEYFILE\fP private key.
1383 You never needed a pass phrase to load a certificate but you need one to
1384 load your private key.
1386 (This option was known as CURLOPT_SSLKEYPASSWD up to 7.16.4 and
1387 CURLOPT_SSLCERTPASSWD up to 7.9.2)
1388 .IP CURLOPT_SSLENGINE
1389 Pass a pointer to a zero terminated string as parameter. It will be used as
1390 the identifier for the crypto engine you want to use for your private
1391 key.
1393 If the crypto device cannot be loaded, \fICURLE_SSL_ENGINE_NOTFOUND\fP is
1394 returned.
1395 .IP CURLOPT_SSLENGINE_DEFAULT
1396 Sets the actual crypto engine as the default for (asymmetric) crypto
1397 operations.
1399 If the crypto device cannot be set, \fICURLE_SSL_ENGINE_SETFAILED\fP is
1400 returned.
1402 Note that even though this option doesn't need any parameter, in some
1403 configurations \fIcurl_easy_setopt\fP might be defined as a macro taking
1404 exactly three arguments. Therefore, it's recommended to pass 1 as parameter to
1405 this option.
1406 .IP CURLOPT_SSLVERSION
1407 Pass a long as parameter to control what version of SSL/TLS to attempt to use.
1408 The available options are:
1410 .IP CURL_SSLVERSION_DEFAULT
1411 The default action. This will attempt to figure out the remote SSL protocol
1412 version, i.e. either SSLv3 or TLSv1 (but not SSLv2, which became disabled
1413 by default with 7.18.1).
1414 .IP CURL_SSLVERSION_TLSv1
1415 Force TLSv1
1416 .IP CURL_SSLVERSION_SSLv2
1417 Force SSLv2
1418 .IP CURL_SSLVERSION_SSLv3
1419 Force SSLv3
1421 .IP CURLOPT_SSL_VERIFYPEER
1422 Pass a long as parameter.
1424 This option determines whether curl verifies the authenticity of the peer's
1425 certificate. A value of 1 means curl verifies; zero means it doesn't.  The
1426 default is nonzero, but before 7.10, it was zero.
1428 When negotiating an SSL connection, the server sends a certificate indicating
1429 its identity.  Curl verifies whether the certificate is authentic, i.e. that
1430 you can trust that the server is who the certificate says it is.  This trust
1431 is based on a chain of digital signatures, rooted in certification authority
1432 (CA) certificates you supply.  As of 7.10, curl installs a default bundle of
1433 CA certificates and you can specify alternate certificates with the
1434 \fICURLOPT_CAINFO\fP option or the \fICURLOPT_CAPATH\fP option.
1436 When \fICURLOPT_SSL_VERIFYPEER\fP is nonzero, and the verification fails to
1437 prove that the certificate is authentic, the connection fails.  When the
1438 option is zero, the connection succeeds regardless.
1440 Authenticating the certificate is not by itself very useful.  You typically
1441 want to ensure that the server, as authentically identified by its
1442 certificate, is the server you mean to be talking to.  Use
1443 \fICURLOPT_SSL_VERIFYHOST\fP to control that.
1444 .IP CURLOPT_CAINFO
1445 Pass a char * to a zero terminated string naming a file holding one or more
1446 certificates to verify the peer with.  This makes sense only when used in
1447 combination with the \fICURLOPT_SSL_VERIFYPEER\fP option.  If
1448 \fICURLOPT_SSL_VERIFYPEER\fP is zero, \fICURLOPT_CAINFO\fP need not
1449 even indicate an accessible file.
1451 Note that option is by default set to the system path where libcurl's cacert
1452 bundle is assumed to be stored, as established at build time.
1454 When built against NSS this is the directory that the NSS certificate
1455 database resides in.
1456 .IP CURLOPT_ISSUERCERT
1457 Pass a char * to a zero terminated string naming a file holding a CA
1458 certificate in PEM format. If the option is set, an additional check against
1459 the peer certificate is performed to verify the issuer is indeed the one
1460 associated with the certificate provided by the option. This additional check
1461 is useful in multi-level PKI where one need to enforce the peer certificate is
1462 from a specific branch of the tree.
1464 This option makes sense only when used in combination with the
1465 \fICURLOPT_SSL_VERIFYPEER\fP option. Otherwise, the result of the check is not
1466 considered as failure.
1468 A specific error code (CURLE_SSL_ISSUER_ERROR) is defined with the option,
1469 which is returned if the setup of the SSL/TLS session has failed due to a
1470 mismatch with the issuer of peer certificate (\fICURLOPT_SSL_VERIFYPEER\fP has
1471 to be set too for the check to fail). (Added in 7.19.0)
1472 .IP CURLOPT_CAPATH
1473 Pass a char * to a zero terminated string naming a directory holding multiple
1474 CA certificates to verify the peer with. The certificate directory must be
1475 prepared using the openssl c_rehash utility. This makes sense only when used
1476 in combination with the \fICURLOPT_SSL_VERIFYPEER\fP option.  If
1477 \fICURLOPT_SSL_VERIFYPEER\fP is zero, \fICURLOPT_CAPATH\fP need not even
1478 indicate an accessible path.  The \fICURLOPT_CAPATH\fP function apparently
1479 does not work in Windows due to some limitation in openssl. This option is
1480 OpenSSL-specific and does nothing if libcurl is built to use GnuTLS.
1481 .IP CURLOPT_CRLFILE
1482 Pass a char * to a zero terminated string naming a file with the concatenation
1483 of CRL (in PEM format) to use in the certificate validation that occurs during
1484 the SSL exchange.
1486 When curl is built to use NSS or GnuTLS, there is no way to influence the use
1487 of CRL passed to help in the verification process. When libcurl is built with
1488 OpenSSL support, X509_V_FLAG_CRL_CHECK and X509_V_FLAG_CRL_CHECK_ALL are both
1489 set, requiring CRL check against all the elements of the certificate chain if
1490 a CRL file is passed.
1492 This option makes sense only when used in combination with the
1493 \fICURLOPT_SSL_VERIFYPEER\fP option.
1495 A specific error code (CURLE_SSL_CRL_BADFILE) is defined with the option. It
1496 is returned when the SSL exchange fails because the CRL file cannot be loaded.
1497 Note that a failure in certificate verification due to a revocation information
1498 found in the CRL does not trigger this specific error. (Added in 7.19.0)
1499 .IP CURLOPT_RANDOM_FILE
1500 Pass a char * to a zero terminated file name. The file will be used to read
1501 from to seed the random engine for SSL. The more random the specified file is,
1502 the more secure the SSL connection will become.
1503 .IP CURLOPT_EGDSOCKET
1504 Pass a char * to the zero terminated path name to the Entropy Gathering Daemon
1505 socket. It will be used to seed the random engine for SSL.
1506 .IP CURLOPT_SSL_VERIFYHOST
1507 Pass a long as parameter.
1509 This option determines whether libcurl verifies that the server cert is for
1510 the server it is known as.
1512 When negotiating an SSL connection, the server sends a certificate indicating
1513 its identity.
1515 When \fICURLOPT_SSL_VERIFYHOST\fP is 2, that certificate must indicate that
1516 the server is the server to which you meant to connect, or the connection
1517 fails.
1519 Curl considers the server the intended one when the Common Name field or a
1520 Subject Alternate Name field in the certificate matches the host name in the
1521 URL to which you told Curl to connect.
1523 When the value is 1, the certificate must contain a Common Name field, but it
1524 doesn't matter what name it says.  (This is not ordinarily a useful setting).
1526 When the value is 0, the connection succeeds regardless of the names in the
1527 certificate.
1529 The default, since 7.10, is 2.
1531 The checking this option controls is of the identity that the server
1532 \fIclaims\fP.  The server could be lying.  To control lying, see
1533 \fICURLOPT_SSL_VERIFYPEER\fP.
1534 .IP CURLOPT_SSL_CIPHER_LIST
1535 Pass a char *, pointing to a zero terminated string holding the list of
1536 ciphers to use for the SSL connection. The list must be syntactically correct,
1537 it consists of one or more cipher strings separated by colons. Commas or spaces
1538 are also acceptable separators but colons are normally used, \!, \- and \+ can
1539 be used as operators.
1541 For OpenSSL and GnuTLS valid examples of cipher lists include 'RC4-SHA',
1542 \'SHA1+DES\', 'TLSv1' and 'DEFAULT'. The default list is normally set when you
1543 compile OpenSSL.
1545 You'll find more details about cipher lists on this URL:
1546 \fIhttp://www.openssl.org/docs/apps/ciphers.html\fP
1548 For NSS valid examples of cipher lists include 'rsa_rc4_128_md5',
1549 \'rsa_aes_128_sha\', etc. With NSS you don't add/remove ciphers. If one uses
1550 this option then all known ciphers are disabled and only those passed in
1551 are enabled.
1553 You'll find more details about the NSS cipher lists on this URL:
1554 \fIhttp://directory.fedora.redhat.com/docs/mod_nss.html#Directives\fP
1556 .IP CURLOPT_SSL_SESSIONID_CACHE
1557 Pass a long set to 0 to disable libcurl's use of SSL session-ID caching. Set
1558 this to 1 to enable it. By default all transfers are done using the
1559 cache. Note that while nothing ever should get hurt by attempting to reuse SSL
1560 session-IDs, there seem to be broken SSL implementations in the wild that may
1561 require you to disable this in order for you to succeed. (Added in 7.16.0)
1562 .IP CURLOPT_KRBLEVEL
1563 Pass a char * as parameter. Set the kerberos security level for FTP; this
1564 also enables kerberos awareness.  This is a string, 'clear', 'safe',
1565 'confidential' or \&'private'.  If the string is set but doesn't match one
1566 of these, 'private' will be used. Set the string to NULL to disable kerberos
1567 support for FTP.
1569 (This option was known as CURLOPT_KRB4LEVEL up to 7.16.3)
1570 .SH SSH OPTIONS
1571 .IP CURLOPT_SSH_AUTH_TYPES
1572 Pass a long set to a bitmask consisting of one or more of
1573 CURLSSH_AUTH_PUBLICKEY, CURLSSH_AUTH_PASSWORD, CURLSSH_AUTH_HOST,
1574 CURLSSH_AUTH_KEYBOARD. Set CURLSSH_AUTH_ANY to let libcurl pick one.
1575 (Added in 7.16.1)
1576 .IP CURLOPT_SSH_HOST_PUBLIC_KEY_MD5
1577 Pass a char * pointing to a string containing 32 hexadecimal digits. The
1578 string should be the 128 bit MD5 checksum of the remote host's public key, and
1579 libcurl will reject the connection to the host unless the md5sums match. This
1580 option is only for SCP and SFTP transfers. (Added in 7.17.1)
1581 .IP CURLOPT_SSH_PUBLIC_KEYFILE
1582 Pass a char * pointing to a file name for your public key. If not used,
1583 libcurl defaults to using \fB~/.ssh/id_dsa.pub\fP.
1584 (Added in 7.16.1)
1585 .IP CURLOPT_SSH_PRIVATE_KEYFILE
1586 Pass a char * pointing to a file name for your private key. If not used,
1587 libcurl defaults to using \fB~/.ssh/id_dsa\fP.
1588 If the file is password-protected, set the password with \fICURLOPT_KEYPASSWD\fP.
1589 (Added in 7.16.1)
1590 .SH OTHER OPTIONS
1591 .IP CURLOPT_PRIVATE
1592 Pass a void * as parameter, pointing to data that should be associated with
1593 this curl handle.  The pointer can subsequently be retrieved using
1594 \fIcurl_easy_getinfo(3)\fP with the CURLINFO_PRIVATE option. libcurl itself
1595 does nothing with this data. (Added in 7.10.3)
1596 .IP CURLOPT_SHARE
1597 Pass a share handle as a parameter. The share handle must have been created by
1598 a previous call to \fIcurl_share_init(3)\fP. Setting this option, will make
1599 this curl handle use the data from the shared handle instead of keeping the
1600 data to itself. This enables several curl handles to share data. If the curl
1601 handles are used simultaneously, you \fBMUST\fP use the locking methods in the
1602 share handle. See \fIcurl_share_setopt(3)\fP for details.
1604 If you add a share that is set to share cookies, your easy handle will use
1605 that cookie cache and get the cookie engine enabled. If you unshare an object
1606 that were using cookies (or change to another object that doesn't share
1607 cookies), the easy handle will get its cookie engine disabled.
1609 Data that the share object is not set to share will be dealt with the usual
1610 way, as if no share was used.
1611 .IP CURLOPT_NEW_FILE_PERMS
1612 Pass a long as a parameter, containing the value of the permissions that will
1613 be assigned to newly created files on the remote server.  The default value is
1614 \fI0644\fP, but any valid value can be used.  The only protocols that can use
1615 this are \fIsftp://\fP, \fIscp://\fP and \fIfile://\fP. (Added in 7.16.4)
1616 .IP CURLOPT_NEW_DIRECTORY_PERMS
1617 Pass a long as a parameter, containing the value of the permissions that will
1618 be assigned to newly created directories on the remote server.  The default
1619 value is \fI0755\fP, but any valid value can be used.  The only protocols that
1620 can use this are \fIsftp://\fP, \fIscp://\fP and \fIfile://\fP.
1621 (Added in 7.16.4)
1622 .SH TELNET OPTIONS
1623 .IP CURLOPT_TELNETOPTIONS
1624 Provide a pointer to a curl_slist with variables to pass to the telnet
1625 negotiations. The variables should be in the format <option=value>. libcurl
1626 supports the options 'TTYPE', 'XDISPLOC' and 'NEW_ENV'. See the TELNET
1627 standard for details.
1628 .SH RETURN VALUE
1629 CURLE_OK (zero) means that the option was set properly, non-zero means an
1630 error occurred as \fI<curl/curl.h>\fP defines. See the \fIlibcurl-errors(3)\fP
1631 man page for the full list with descriptions.
1633 If you try to set an option that libcurl doesn't know about, perhaps because
1634 the library is too old to support it or the option was removed in a recent
1635 version, this function will return \fICURLE_FAILED_INIT\fP.
1636 .SH "SEE ALSO"
1637 .BR curl_easy_init "(3), " curl_easy_cleanup "(3), " curl_easy_reset "(3)"