curl_easy_setopt.3: shorten
[platform/upstream/curl.git] / docs / libcurl / curl_easy_setopt.3
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
9 .\" *
10 .\" * This software is licensed as described in the file COPYING, which
11 .\" * you should have received as part of this distribution. The terms
12 .\" * are also available at http://curl.haxx.se/docs/copyright.html.
13 .\" *
14 .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 .\" * copies of the Software, and permit persons to whom the Software is
16 .\" * furnished to do so, under the terms of the COPYING file.
17 .\" *
18 .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 .\" * KIND, either express or implied.
20 .\" *
21 .\" **************************************************************************
22 .\"
23 .TH curl_easy_setopt 3 "1 Jan 2010" "libcurl 7.20.0" "libcurl Manual"
24 .SH NAME
25 curl_easy_setopt \- set options for a curl easy handle
26 .SH SYNOPSIS
27 #include <curl/curl.h>
28
29 CURLcode curl_easy_setopt(CURL *handle, CURLoption option, parameter);
30 .SH DESCRIPTION
31 curl_easy_setopt() is used to tell libcurl how to behave. By using the
32 appropriate options to \fIcurl_easy_setopt\fP, you can change libcurl's
33 behavior.  All options are set with the \fIoption\fP followed by a
34 \fIparameter\fP. That parameter can be a \fBlong\fP, a \fBfunction pointer\fP,
35 an \fBobject pointer\fP or a \fBcurl_off_t\fP, depending on what the specific
36 option expects. Read this manual carefully as bad input values may cause
37 libcurl to behave badly!  You can only set one option in each function call. A
38 typical application uses many curl_easy_setopt() calls in the setup phase.
39
40 Options set with this function call are valid for all forthcoming transfers
41 performed using this \fIhandle\fP.  The options are not in any way reset
42 between transfers, so if you want subsequent transfers with different options,
43 you must change them between the transfers. You can optionally reset all
44 options back to internal default with \fIcurl_easy_reset(3)\fP.
45
46 Strings passed to libcurl as 'char *' arguments, are copied by the library;
47 thus the string storage associated to the pointer argument may be overwritten
48 after curl_easy_setopt() returns. Exceptions to this rule are described in
49 the option details below.
50
51 Before version 7.17.0, strings were not copied. Instead the user was forced
52 keep them available until libcurl no longer needed them.
53
54 The \fIhandle\fP is the return code from a \fIcurl_easy_init(3)\fP or
55 \fIcurl_easy_duphandle(3)\fP call.
56 .SH BEHAVIOR OPTIONS
57 .IP CURLOPT_VERBOSE
58 Display verbose information. See \fICURLOPT_VERBOSE(3)\fP
59 .IP CURLOPT_HEADER
60 Include the header in the body output. See \fICURLOPT_HEADER(3)\fP
61 .IP CURLOPT_NOPROGRESS
62 Shut off the progress meter. See \fICURLOPT_NOPROGRESS(3)\fP
63 .IP CURLOPT_NOSIGNAL
64 Do not install signal handlers. See \fICURLOPT_NOSIGNAL(3)\fP
65 .IP CURLOPT_WILDCARDMATCH
66 Transfer multiple files according to a file name pattern. See \fICURLOPT_WILDCARDMATCH(3)\fP
67 .SH CALLBACK OPTIONS
68 .IP CURLOPT_WRITEFUNCTION
69 Function called as soon as there is data received. See \fICURLOPT_WRITEFUNCTION(3)\fP
70 .IP CURLOPT_WRITEDATA
71 Data pointer to pass to the file write function. See \fCURLOPT_WRITEDATA(3)\fP
72 .IP CURLOPT_READFUNCTION
73 Pass a pointer to a function that matches the following prototype:
74 \fBsize_t function( void *ptr, size_t size, size_t nmemb, void *userdata);\fP
75 This function gets called by libcurl as soon as it needs to read data in order
76 to send it to the peer. The data area pointed at by the pointer \fIptr\fP may
77 be filled with at most \fIsize\fP multiplied with \fInmemb\fP number of
78 bytes. Your function must return the actual number of bytes that you stored in
79 that memory area. Returning 0 will signal end-of-file to the library and cause
80 it to stop the current transfer.
81
82 If you stop the current transfer by returning 0 "pre-maturely" (i.e before the
83 server expected it, like when you've said you will upload N bytes and you
84 upload less than N bytes), you may experience that the server "hangs" waiting
85 for the rest of the data that won't come.
86
87 The read callback may return \fICURL_READFUNC_ABORT\fP to stop the current
88 operation immediately, resulting in a \fICURLE_ABORTED_BY_CALLBACK\fP error
89 code from the transfer (Added in 7.12.1)
90
91 From 7.18.0, the function can return CURL_READFUNC_PAUSE which then will cause
92 reading from this connection to become paused. See \fIcurl_easy_pause(3)\fP
93 for further details.
94
95 \fBBugs\fP: when doing TFTP uploads, you must return the exact amount of data
96 that the callback wants, or it will be considered the final packet by the
97 server end and the transfer will end there.
98
99 If you set this callback pointer to NULL, or don't set it at all, the default
100 internal read function will be used. It is doing an fread() on the FILE *
101 userdata set with \fICURLOPT_READDATA\fP.
102 .IP CURLOPT_READDATA
103 Data pointer to pass to the file read function. If you use the
104 \fICURLOPT_READFUNCTION\fP option, this is the pointer you'll get as input. If
105 you don't specify a read callback but instead rely on the default internal
106 read function, this data must be a valid readable FILE * (cast to 'void *').
107
108 If you're using libcurl as a win32 DLL, you MUST use a
109 \fICURLOPT_READFUNCTION\fP if you set this option.
110
111 This option was also known by the older name \fICURLOPT_INFILE\fP, the name
112 \fICURLOPT_READDATA\fP was introduced in 7.9.7.
113 .IP CURLOPT_IOCTLFUNCTION
114 Pass a pointer to a function that matches the following prototype:
115 \fBcurlioerr function(CURL *handle, int cmd, void *clientp);\fP. This function
116 gets called by libcurl when something special I/O-related needs to be done
117 that the library can't do by itself. For now, rewinding the read data stream
118 is the only action it can request. The rewinding of the read data stream may
119 be necessary when doing a HTTP PUT or POST with a multi-pass authentication
120 method. By default, this parameter is set to NULL.  (Option added in 7.12.3).
121
122 Use \fICURLOPT_SEEKFUNCTION\fP instead to provide seeking! If
123 \fICURLOPT_SEEKFUNCTION\fP is set, this parameter will be ignored when seeking.
124 .IP CURLOPT_IOCTLDATA
125 Pass a pointer that will be untouched by libcurl and passed as the 3rd
126 argument in the ioctl callback set with \fICURLOPT_IOCTLFUNCTION\fP.
127 By default, the value of this parameter is unspecified.  (Option added in
128 7.12.3)
129 .IP CURLOPT_SEEKFUNCTION
130 Pass a pointer to a function that matches the following prototype: \fBint
131 function(void *instream, curl_off_t offset, int origin);\fP This function gets
132 called by libcurl to seek to a certain position in the input stream and can be
133 used to fast forward a file in a resumed upload (instead of reading all
134 uploaded bytes with the normal read function/callback). It is also called to
135 rewind a stream when doing a HTTP PUT or POST with a multi-pass authentication
136 method. The function shall work like "fseek" or "lseek" and accepted SEEK_SET,
137 SEEK_CUR and SEEK_END as argument for origin, although libcurl currently only
138 passes SEEK_SET. The callback must return 0 (CURL_SEEKFUNC_OK) on success, 1
139 (CURL_SEEKFUNC_FAIL) to cause the upload operation to fail or 2
140 (CURL_SEEKFUNC_CANTSEEK) to indicate that while the seek failed, libcurl is
141 free to work around the problem if possible. The latter can sometimes be done
142 by instead reading from the input or similar.
143
144 By default, this parameter is unset.
145
146 If you forward the input arguments directly to "fseek" or "lseek", note that
147 the data type for \fIoffset\fP is not the same as defined for curl_off_t on
148 many systems! (Option added in 7.18.0)
149 .IP CURLOPT_SEEKDATA
150 Data pointer to pass to the file seek function. If you use the
151 \fICURLOPT_SEEKFUNCTION\fP option, this is the pointer you'll get as input. If
152 you don't specify a seek callback, NULL is passed. (Option added in 7.18.0)
153 .IP CURLOPT_SOCKOPTFUNCTION
154 Pass a pointer to a function that matches the following prototype: \fBint
155 function(void *clientp, curl_socket_t curlfd, curlsocktype purpose);\fP. By
156 default, this parameter is unset. If set, this
157 function gets called by libcurl after the socket() call but before the
158 connect() call. The callback's \fIpurpose\fP argument identifies the exact
159 purpose for this particular socket:
160
161 \fICURLSOCKTYPE_IPCXN\fP for actively created connections or since 7.28.0
162 \fICURLSOCKTYPE_ACCEPT\fP for FTP when the connection was setup with PORT/EPSV
163 (in earlier versions these sockets weren't passed to this callback).
164
165 Future versions of libcurl may support more purposes. It passes the newly
166 created socket descriptor so additional setsockopt() calls can be done at the
167 user's discretion.  Return 0 (zero) from the callback on success. Return 1
168 from the callback function to signal an unrecoverable error to the library and
169 it will close the socket and return \fICURLE_COULDNT_CONNECT\fP.  (Option
170 added in 7.16.0)
171
172 Added in 7.21.5, the callback function may return
173 \fICURL_SOCKOPT_ALREADY_CONNECTED\fP, which tells libcurl that the socket is
174 in fact already connected and then libcurl will not attempt to connect it.
175 .IP CURLOPT_SOCKOPTDATA
176 Pass a pointer that will be untouched by libcurl and passed as the first
177 argument in the sockopt callback set with \fICURLOPT_SOCKOPTFUNCTION\fP.
178 The default value of this parameter is unspecified.
179 (Option added in 7.16.0)
180 .IP CURLOPT_OPENSOCKETFUNCTION
181 Pass a pointer to a function that matches the following prototype:
182 \fBcurl_socket_t function(void *clientp, curlsocktype purpose, struct
183 curl_sockaddr *address);\fP. This function gets called by libcurl instead of
184 the \fIsocket(2)\fP call. The callback's \fIpurpose\fP argument identifies the
185 exact purpose for this particular socket: \fICURLSOCKTYPE_IPCXN\fP is for IP
186 based connections. Future versions of libcurl may support more purposes. It
187 passes the resolved peer address as a \fIaddress\fP argument so the callback
188 can modify the address or refuse to connect at all. The callback function
189 should return the socket or \fICURL_SOCKET_BAD\fP in case no connection could
190 be established or another error was detected. Any additional
191 \fIsetsockopt(2)\fP calls can be done on the socket at the user's discretion.
192 \fICURL_SOCKET_BAD\fP return value from the callback function will signal an
193 unrecoverable error to the library and it will return
194 \fICURLE_COULDNT_CONNECT\fP.  This return code can be used for IP address
195 blacklisting.  The default behavior is:
196 .nf
197    return socket(addr->family, addr->socktype, addr->protocol);
198 .fi
199 (Option added in 7.17.1.)
200 .IP CURLOPT_OPENSOCKETDATA
201 Pass a pointer that will be untouched by libcurl and passed as the first
202 argument in the opensocket callback set with \fICURLOPT_OPENSOCKETFUNCTION\fP.
203 The default value of this parameter is unspecified.
204 (Option added in 7.17.1.)
205 .IP CURLOPT_CLOSESOCKETFUNCTION
206 Pass a pointer to a function that matches the following prototype: \fBint
207 function(void *clientp, curl_socket_t item);\fP. This function gets called by
208 libcurl instead of the \fIclose(3)\fP or \fIclosesocket(3)\fP call when
209 sockets are closed (not for any other file descriptors). This is pretty much
210 the reverse to the \fICURLOPT_OPENSOCKETFUNCTION\fP option. Return 0 to signal
211 success and 1 if there was an error.  (Option added in 7.21.7)
212 .IP CURLOPT_CLOSESOCKETDATA
213 Pass a pointer that will be untouched by libcurl and passed as the first
214 argument in the closesocket callback set with
215 \fICURLOPT_CLOSESOCKETFUNCTION\fP.
216 The default value of this parameter is unspecified.
217 (Option added in 7.21.7)
218 .IP CURLOPT_PROGRESSFUNCTION
219 Pass a pointer to a function that matches the following prototype:
220
221 \fBint function(void *clientp, double dltotal, double dlnow, double ultotal,
222 double ulnow);\fP
223
224 We encourage users to use \fICURLOPT_XFERINFOFUNCTION\fP instead, if you can.
225
226 This function gets called by libcurl instead of its internal equivalent with a
227 frequent interval. While data is being transferred it will be called very
228 frequently, and during slow periods like when nothing is being transferred it
229 can slow down to about one call per second.
230
231 \fIclientp\fP is the pointer set with \fICURLOPT_PROGRESSDATA\fP, it is not
232 actually used by libcurl but is only passed along from the application to the
233 callback.
234
235 The callback gets told how much data libcurl will transfer and has
236 transferred, in number of bytes. \fIdltotal\fP is the total number of bytes
237 libcurl expects to download in this transfer. \fIdlnow\fP is the number of
238 bytes downloaded so far. \fIultotal\fP is the total number of bytes libcurl
239 expects to upload in this transfer. \fIulnow\fP is the number of bytes
240 uploaded so far.
241
242 Unknown/unused argument values passed to the callback will be set to zero
243 (like if you only download data, the upload size will remain 0). Many times
244 the callback will be called one or more times first, before it knows the data
245 sizes so a program must be made to handle that.
246
247 Returning a non-zero value from this callback will cause libcurl to abort the
248 transfer and return \fICURLE_ABORTED_BY_CALLBACK\fP.
249
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.
253
254 \fICURLOPT_NOPROGRESS\fP must be set to 0 to make this function actually
255 get called.
256 .IP CURLOPT_XFERINFOFUNCTION
257 Pass a pointer to a function that matches the following prototype:
258
259 .nf
260 \fBint function(void *clientp, curl_off_t dltotal, curl_off_t dlnow,
261                 curl_off_t ultotal, curl_off_t ulnow);\fP
262 .fi
263
264 This function gets called by libcurl instead of its internal equivalent with a
265 frequent interval. While data is being transferred it will be called very
266 frequently, and during slow periods like when nothing is being transferred it
267 can slow down to about one call per second.
268
269 \fIclientp\fP is the pointer set with \fICURLOPT_XFERINFODATA\fP, it is only
270 passed along from the application to the callback.
271
272 The callback gets told how much data libcurl will transfer and has
273 transferred, in number of bytes. \fIdltotal\fP is the total number of bytes
274 libcurl expects to download in this transfer. \fIdlnow\fP is the number of
275 bytes downloaded so far. \fIultotal\fP is the total number of bytes libcurl
276 expects to upload in this transfer. \fIulnow\fP is the number of bytes
277 uploaded so far.
278
279 Unknown/unused argument values passed to the callback will be set to zero
280 (like if you only download data, the upload size will remain 0). Many times
281 the callback will be called one or more times first, before it knows the data
282 sizes so a program must be made to handle that.
283
284 Returning a non-zero value from this callback will cause libcurl to abort the
285 transfer and return \fICURLE_ABORTED_BY_CALLBACK\fP.
286
287 If you transfer data with the multi interface, this function will not be
288 called during periods of idleness unless you call the appropriate libcurl
289 function that performs transfers.
290
291 \fICURLOPT_NOPROGRESS\fP must be set to 0 to make this function actually
292 get called.
293
294 (Added in 7.32.0)
295 .IP CURLOPT_PROGRESSDATA
296 Pass a pointer that will be untouched by libcurl and passed as the first
297 argument in the progress callback set with \fICURLOPT_PROGRESSFUNCTION\fP.
298 The default value of this parameter is unspecified.
299 .IP CURLOPT_XFERINFODATA
300 Pass a pointer that will be untouched by libcurl and passed as the first
301 argument in the progress callback set with \fICURLOPT_XFERINFOFUNCTION\fP.
302 The default value of this parameter is unspecified. This option is an alias
303 for CURLOPT_PROGRESSDATA. (Added in 7.32.0)
304 .IP CURLOPT_HEADERFUNCTION
305 Pass a pointer to a function that matches the following prototype:
306 \fBsize_t function( void *ptr, size_t size, size_t nmemb, void
307 *userdata);\fP. This function gets called by libcurl as soon as it has
308 received header data. The header callback will be called once for each header
309 and only complete header lines are passed on to the callback. Parsing headers
310 is very easy using this. The size of the data pointed to by \fIptr\fP is
311 \fIsize\fP multiplied with \fInmemb\fP. Do not assume that the header line is
312 zero terminated! The pointer named \fIuserdata\fP is the one you set with the
313 \fICURLOPT_WRITEHEADER\fP option. The callback function must return the number
314 of bytes actually taken care of. If that amount differs from the amount passed
315 to your function, it'll signal an error to the library. This will abort the
316 transfer and return \fICURL_WRITE_ERROR\fP.
317
318 A complete HTTP header that is passed to this function can be up to
319 \fICURL_MAX_HTTP_HEADER\fP (100K) bytes.
320
321 If this option is not set, or if it is set to NULL, but
322 \fICURLOPT_HEADERDATA\fP (\fICURLOPT_WRITEHEADER\fP) is set to anything but
323 NULL, the function used to accept response data will be used instead. That is,
324 it will be the function specified with \fICURLOPT_WRITEFUNCTION\fP, or if it
325 is not specified or NULL - the default, stream-writing function.
326
327 It's important to note that the callback will be invoked for the headers of
328 all responses received after initiating a request and not just the final
329 response. This includes all responses which occur during authentication
330 negotiation. If you need to operate on only the headers from the final
331 response, you will need to collect headers in the callback yourself and use
332 HTTP status lines, for example, to delimit response boundaries.
333
334 When a server sends a chunked encoded transfer, it may contain a trailer. That
335 trailer is identical to a HTTP header and if such a trailer is received it is
336 passed to the application using this callback as well. There are several ways
337 to detect it being a trailer and not an ordinary header: 1) it comes after the
338 response-body. 2) it comes after the final header line (CR LF) 3) a Trailer:
339 header among the regular response-headers mention what header(s) to expect in
340 the trailer.
341
342 For non-HTTP protocols like FTP, POP3, IMAP and SMTP this function will get
343 called with the server responses to the commands that libcurl sends.
344 .IP CURLOPT_WRITEHEADER
345 (This option is also known as \fBCURLOPT_HEADERDATA\fP) Pass a pointer to be
346 used to write the header part of the received data to. If you don't use
347 \fICURLOPT_WRITEFUNCTION\fP or \fICURLOPT_HEADERFUNCTION\fP to take care of
348 the writing, this must be a valid FILE * as the internal default will then be
349 a plain fwrite(). See also the \fICURLOPT_HEADERFUNCTION\fP option above on
350 how to set a custom get-all-headers callback.
351 .IP CURLOPT_DEBUGFUNCTION
352 Pass a pointer to a function that matches the following prototype: \fBint
353 curl_debug_callback (CURL *, curl_infotype, char *, size_t, void *);\fP
354 \fICURLOPT_DEBUGFUNCTION\fP replaces the standard debug function used when
355 \fICURLOPT_VERBOSE \fP is in effect. This callback receives debug information,
356 as specified with the \fBcurl_infotype\fP argument. This function must return
357 0.  The data pointed to by the char * passed to this function WILL NOT be zero
358 terminated, but will be exactly of the size as told by the size_t argument.
359
360 Available curl_infotype values:
361 .RS
362 .IP CURLINFO_TEXT
363 The data is informational text.
364 .IP CURLINFO_HEADER_IN
365 The data is header (or header-like) data received from the peer.
366 .IP CURLINFO_HEADER_OUT
367 The data is header (or header-like) data sent to the peer.
368 .IP CURLINFO_DATA_IN
369 The data is protocol data received from the peer.
370 .IP CURLINFO_DATA_OUT
371 The data is protocol data sent to the peer.
372 .IP CURLINFO_SSL_DATA_OUT
373 The data is SSL/TLS (binary) data sent to the peer.
374 .IP CURLINFO_SSL_DATA_IN
375 The data is SSL/TLS (binary) data received from the peer.
376 .RE
377 .IP CURLOPT_DEBUGDATA
378 Pass a pointer to whatever you want passed in to your
379 \fICURLOPT_DEBUGFUNCTION\fP in the last void * argument. This pointer is not
380 used by libcurl, it is only passed to the callback.
381 .IP CURLOPT_SSL_CTX_FUNCTION
382 This option does only function for libcurl powered by OpenSSL. If libcurl was
383 built against another SSL library, this functionality is absent.
384
385 Pass a pointer to a function that matches the following prototype:
386 \fBCURLcode sslctxfun(CURL *curl, void *sslctx, void *parm);\fP This function
387 gets called by libcurl just before the initialization of a SSL connection
388 after having processed all other SSL related options to give a last chance to
389 an application to modify the behaviour of openssl's ssl initialization. The
390 \fIsslctx\fP parameter is actually a pointer to an openssl \fISSL_CTX\fP. If
391 an error is returned no attempt to establish a connection is made and the
392 perform operation will return the error code from this callback function.  Set
393 the \fIparm\fP argument with the \fICURLOPT_SSL_CTX_DATA\fP option. This
394 option was introduced in 7.11.0.
395
396 This function will get called on all new connections made to a server, during
397 the SSL negotiation. The SSL_CTX pointer will be a new one every time.
398
399 To use this properly, a non-trivial amount of knowledge of the openssl
400 libraries is necessary. For example, using this function allows you to use
401 openssl callbacks to add additional validation code for certificates, and even
402 to change the actual URI of a HTTPS request (example used in the lib509 test
403 case).  See also the example section for a replacement of the key, certificate
404 and trust file settings.
405 .IP CURLOPT_SSL_CTX_DATA
406 Data pointer to pass to the ssl context callback set by the option
407 \fICURLOPT_SSL_CTX_FUNCTION\fP, this is the pointer you'll get as third
408 parameter, otherwise \fBNULL\fP. (Added in 7.11.0)
409 .IP CURLOPT_CONV_TO_NETWORK_FUNCTION
410 .IP CURLOPT_CONV_FROM_NETWORK_FUNCTION
411 .IP CURLOPT_CONV_FROM_UTF8_FUNCTION
412 Pass a pointer to a function that matches the following prototype:
413 \fBCURLcode function(char *ptr, size_t length);\fP
414
415 These three options apply to non-ASCII platforms only.  They are available
416 only if \fBCURL_DOES_CONVERSIONS\fP was defined when libcurl was built. When
417 this is the case, \fIcurl_version_info(3)\fP will return the CURL_VERSION_CONV
418 feature bit set.
419
420 The data to be converted is in a buffer pointed to by the ptr parameter.  The
421 amount of data to convert is indicated by the length parameter.  The converted
422 data overlays the input data in the buffer pointed to by the ptr parameter.
423 CURLE_OK should be returned upon successful conversion.  A CURLcode return
424 value defined by curl.h, such as CURLE_CONV_FAILED, should be returned if an
425 error was encountered.
426
427 \fBCURLOPT_CONV_TO_NETWORK_FUNCTION\fP and
428 \fBCURLOPT_CONV_FROM_NETWORK_FUNCTION\fP convert between the host encoding and
429 the network encoding.  They are used when commands or ASCII data are
430 sent/received over the network.
431
432 \fBCURLOPT_CONV_FROM_UTF8_FUNCTION\fP is called to convert from UTF8 into the
433 host encoding.  It is required only for SSL processing.
434
435 If you set a callback pointer to NULL, or don't set it at all, the built-in
436 libcurl iconv functions will be used.  If HAVE_ICONV was not defined when
437 libcurl was built, and no callback has been established, conversion will
438 return the CURLE_CONV_REQD error code.
439
440 If HAVE_ICONV is defined, CURL_ICONV_CODESET_OF_HOST must also be defined.
441 For example:
442
443  \&#define CURL_ICONV_CODESET_OF_HOST "IBM-1047"
444
445 The iconv code in libcurl will default the network and UTF8 codeset names as
446 follows:
447
448  \&#define CURL_ICONV_CODESET_OF_NETWORK "ISO8859-1"
449
450  \&#define CURL_ICONV_CODESET_FOR_UTF8   "UTF-8"
451
452 You will need to override these definitions if they are different on your
453 system.
454 .IP CURLOPT_INTERLEAVEFUNCTION
455 Pass a pointer to a function that matches the following prototype:
456 \fBsize_t function( void *ptr, size_t size, size_t nmemb, void
457 *userdata)\fP. This function gets called by libcurl as soon as it has received
458 interleaved RTP data. This function gets called for each $ block and therefore
459 contains exactly one upper-layer protocol unit (e.g.  one RTP packet). Curl
460 writes the interleaved header as well as the included data for each call. The
461 first byte is always an ASCII dollar sign. The dollar sign is followed by a
462 one byte channel identifier and then a 2 byte integer length in network byte
463 order. See \fIRFC2326 Section 10.12\fP for more information on how RTP
464 interleaving behaves. If unset or set to NULL, curl will use the default write
465 function.
466
467 Interleaved RTP poses some challenges for the client application. Since the
468 stream data is sharing the RTSP control connection, it is critical to service
469 the RTP in a timely fashion. If the RTP data is not handled quickly,
470 subsequent response processing may become unreasonably delayed and the
471 connection may close. The application may use \fICURL_RTSPREQ_RECEIVE\fP to
472 service RTP data when no requests are desired. If the application makes a
473 request, (e.g.  \fICURL_RTSPREQ_PAUSE\fP) then the response handler will
474 process any pending RTP data before marking the request as finished.  (Added
475 in 7.20.0)
476 .IP CURLOPT_INTERLEAVEDATA
477 This is the userdata pointer that will be passed to
478 \fICURLOPT_INTERLEAVEFUNCTION\fP when interleaved RTP data is received. (Added
479 in 7.20.0)
480 .IP CURLOPT_CHUNK_BGN_FUNCTION
481 Pass a pointer to a function that matches the following prototype:
482 \fBlong function (const void *transfer_info, void *ptr, int remains)\fP. This
483 function gets called by libcurl before a part of the stream is going to be
484 transferred (if the transfer supports chunks).
485
486 This callback makes sense only when using the \fICURLOPT_WILDCARDMATCH\fP
487 option for now.
488
489 The target of transfer_info parameter is a "feature depended" structure. For
490 the FTP wildcard download, the target is curl_fileinfo structure (see
491 \fIcurl/curl.h\fP).  The parameter ptr is a pointer given by
492 \fICURLOPT_CHUNK_DATA\fP. The parameter remains contains number of chunks
493 remaining per the transfer. If the feature is not available, the parameter has
494 zero value.
495
496 Return \fICURL_CHUNK_BGN_FUNC_OK\fP if everything is fine,
497 \fICURL_CHUNK_BGN_FUNC_SKIP\fP if you want to skip the concrete chunk or
498 \fICURL_CHUNK_BGN_FUNC_FAIL\fP to tell libcurl to stop if some error occurred.
499 (This was added in 7.21.0)
500 .IP CURLOPT_CHUNK_END_FUNCTION
501 Pass a pointer to a function that matches the following prototype:
502 \fBlong function(void *ptr)\fP. This function gets called by libcurl as soon
503 as a part of the stream has been transferred (or skipped).
504
505 Return \fICURL_CHUNK_END_FUNC_OK\fP if everything is fine or
506 \fBCURL_CHUNK_END_FUNC_FAIL\fP to tell the lib to stop if some error occurred.
507 (This was added in 7.21.0)
508 .IP CURLOPT_CHUNK_DATA
509 Pass a pointer that will be untouched by libcurl and passed as the ptr
510 argument to the \fICURL_CHUNK_BGN_FUNTION\fP and \fICURL_CHUNK_END_FUNTION\fP.
511 (This was added in 7.21.0)
512 .IP CURLOPT_FNMATCH_FUNCTION
513 Pass a pointer to a function that matches the following prototype: \fBint
514 function(void *ptr, const char *pattern, const char *string)\fP prototype (see
515 \fIcurl/curl.h\fP). It is used internally for the wildcard matching feature.
516
517 Return \fICURL_FNMATCHFUNC_MATCH\fP if pattern matches the string,
518 \fICURL_FNMATCHFUNC_NOMATCH\fP if not or \fICURL_FNMATCHFUNC_FAIL\fP if an
519 error occurred.  (This was added in 7.21.0)
520 .IP CURLOPT_FNMATCH_DATA
521 Pass a pointer that will be untouched by libcurl and passed as the ptr argument
522 to the \fICURL_FNMATCH_FUNCTION\fP. (This was added in 7.21.0)
523 .SH ERROR OPTIONS
524 .IP CURLOPT_ERRORBUFFER
525 Pass a char * to a buffer that the libcurl may store human readable error
526 messages in. This may be more helpful than just the return code from
527 \fIcurl_easy_perform\fP. The buffer must be at least CURL_ERROR_SIZE big.
528 Although this argument is a 'char *', it does not describe an input string.
529 Therefore the (probably undefined) contents of the buffer is NOT copied by the
530 library. You must keep the associated storage available until libcurl no
531 longer needs it. Failing to do so will cause very odd behavior or even
532 crashes. libcurl will need it until you call \fIcurl_easy_cleanup(3)\fP or you
533 set the same option again to use a different pointer.
534
535 Use \fICURLOPT_VERBOSE\fP and \fICURLOPT_DEBUGFUNCTION\fP to better
536 debug/trace why errors happen.
537
538 If the library does not return an error, the buffer may not have been
539 touched. Do not rely on the contents in those cases.
540
541 .IP CURLOPT_STDERR
542 Pass a FILE * as parameter. Tell libcurl to use this stream instead of stderr
543 when showing the progress meter and displaying \fICURLOPT_VERBOSE\fP data.
544 .IP CURLOPT_FAILONERROR
545 A parameter set to 1 tells the library to fail silently if the HTTP code
546 returned is equal to or larger than 400. The default action would be to return
547 the page normally, ignoring that code.
548
549 This method is not fail-safe and there are occasions where non-successful
550 response codes will slip through, especially when authentication is involved
551 (response codes 401 and 407).
552
553 You might get some amounts of headers transferred before this situation is
554 detected, like when a "100-continue" is received as a response to a
555 POST/PUT and a 401 or 407 is received immediately afterwards.
556 .SH NETWORK OPTIONS
557 .IP CURLOPT_URL
558 Pass in a pointer to the actual URL to deal with. The parameter should be a
559 char * to a zero terminated string which must be URL-encoded in the following
560 format:
561
562 scheme://host:port/path
563
564 For a greater explanation of the format please see RFC3986.
565
566 If the given URL lacks the scheme (such as "http://" or "ftp://" etc) then
567 libcurl will attempt to resolve the protocol based on one of the following
568 given host names:
569
570 HTTP, FTP, DICT, LDAP, IMAP, POP3 or SMTP
571
572 (POP3 and SMTP added in 7.31.0)
573
574 Should the protocol, either that specified by the scheme or deduced by libcurl
575 from the host name, not be supported by libcurl then
576 (\fICURLE_UNSUPPORTED_PROTOCOL\fP) will be returned from either the
577 \fIcurl_easy_perform(3)\fP or \fIcurl_multi_perform(3)\fP functions when you
578 call them. Use \fIcurl_version_info(3)\fP for detailed information of which
579 protocols are supported by the build of libcurl you are using.
580
581 The host part of the URL contains the address of the server that you want to
582 connect to. This can be the fully qualified domain name of the server, the
583 local network name of the machine on your network or the IP address of the
584 server or machine represented by either an IPv4 or IPv6 address. For example:
585
586 http://www.example.com/
587
588 http://hostname/
589
590 http://192.168.0.1/
591
592 http://[2001:1890:1112:1::20]/
593
594 It is also possible to specify the user name, password and any supported login
595 options as part of the host, for the following protocols, when connecting to
596 servers that require authentication:
597
598 http://user:password@www.example.com
599
600 ftp://user:password@ftp.example.com
601
602 imap://user:password;options@mail.example.com
603
604 pop3://user:password;options@mail.example.com
605
606 smtp://user:password;options@mail.example.com
607
608 At present only IMAP, POP3 and SMTP support login options as part of the host.
609 For more information about the login options in URL syntax please see RFC2384,
610 RFC5092 and IETF draft draft-earhart-url-smtp-00.txt (Added in 7.31.0).
611
612 The port is optional and when not specified libcurl will use the default port
613 based on the determined or specified protocol: 80 for HTTP, 21 for FTP and 25
614 for SMTP, etc. The following examples show how to specify the port:
615
616 http://www.example.com:8080/ - This will connect to a web server using port
617 8080 rather than 80.
618
619 smtp://mail.example.com:587/ - This will connect to a SMTP server on the
620 alternative mail port.
621
622 The path part of the URL is protocol specific and whilst some examples are
623 given below this list is not conclusive:
624
625 .B HTTP
626
627 The path part of a HTTP request specifies the file to retrieve and from what
628 directory. If the directory is not specified then the web server's root
629 directory is used. If the file is omitted then the default document will be
630 retrieved for either the directory specified or the root directory. The
631 exact resource returned for each URL is entirely dependent on the server's
632 configuration.
633
634 http://www.example.com - This gets the main page from the web server.
635
636 http://www.example.com/index.html - This returns the main page by explicitly
637 requesting it.
638
639 http://www.example.com/contactus/ - This returns the default document from
640 the contactus directory.
641
642 .B FTP
643
644 The path part of an FTP request specifies the file to retrieve and from what
645 directory. If the file part is omitted then libcurl downloads the directory
646 listing for the directory specified. If the directory is omitted then
647 the directory listing for the root / home directory will be returned.
648
649 ftp://ftp.example.com - This retrieves the directory listing for the root
650 directory.
651
652 ftp://ftp.example.com/readme.txt - This downloads the file readme.txt from the
653 root directory.
654
655 ftp://ftp.example.com/libcurl/readme.txt - This downloads readme.txt from the
656 libcurl directory.
657
658 ftp://user:password@ftp.example.com/readme.txt - This retrieves the readme.txt
659 file from the user's home directory. When a username and password is
660 specified, everything that is specified in the path part is relative to the
661 user's home directory. To retrieve files from the root directory or a
662 directory underneath the root directory then the absolute path must be
663 specified by prepending an additional forward slash to the beginning of the
664 path.
665
666 ftp://user:password@ftp.example.com//readme.txt - This retrieves the readme.txt
667 from the root directory when logging in as a specified user.
668
669 .B SMTP
670
671 The path part of a SMTP request specifies the host name to present during
672 communication with the mail server. If the path is omitted then libcurl will
673 attempt to resolve the local computer's host name. However, this may not
674 return the fully qualified domain name that is required by some mail servers
675 and specifying this path allows you to set an alternative name, such as
676 your machine's fully qualified domain name, which you might have obtained
677 from an external function such as gethostname or getaddrinfo.
678
679 smtp://mail.example.com - This connects to the mail server at example.com and
680 sends your local computer's host name in the HELO / EHLO command.
681
682 smtp://mail.example.com/client.example.com - This will send client.example.com in
683 the HELO / EHLO command to the mail server at example.com.
684
685 .B POP3
686
687 The path part of a POP3 request specifies the message ID to retrieve. If the
688 ID is not specified then a list of waiting messages is returned instead.
689
690 pop3://user:password@mail.example.com - This lists the available messages for
691 the user
692
693 pop3://user:password@mail.example.com/1 - This retrieves the first message for
694 the user
695
696 .B IMAP
697
698 The path part of an IMAP request not only specifies the mailbox to list (Added
699 in 7.30.0) or select, but can also be used to check the UIDVALIDITY of the
700 mailbox, to specify the UID, SECTION (Added in 7.30.0) and PARTIAL octets
701 (Added in 7.37.0) of the message to fetch and to specify what nessages to
702 search for (Added in 7.37.0).
703
704 imap://user:password@mail.example.com - Performs a top level folder list
705
706 imap://user:password@mail.example.com/INBOX - Performs a folder list on the
707 user's inbox
708
709 imap://user:password@mail.example.com/INBOX/;UID=1 - Selects the user's inbox
710 and fetches message 1
711
712 imap://user:password@mail.example.com/INBOX;UIDVALIDITY=50/;UID=2 - Selects
713 the user's inbox, checks the UIDVALIDITY of the mailbox is 50 and fetches
714 message 2 if it is
715
716 imap://user:password@mail.example.com/INBOX/;UID=3/;SECTION=TEXT - Selects the
717 user's inbox and fetches the text portial of message 3
718
719 imap://user:password@mail.example.com/INBOX/;UID=4/;PARTIAL=0.1024 - Selects
720 the user's inbox and fetches the first 1024 octets of message 4
721
722 imap://user:password@mail.example.com/INBOX?NEW - Selects the user's inbox and
723 checks for NEW messages
724
725 imap://user:password@mail.example.com/INBOX?SUBJECT%20shadows - Selects the
726 user's inbox and searches for messages containing "shadows" in the subject
727 line
728
729 For more information about the individual components of an IMAP URL please
730 see RFC5092.
731
732 .B SCP
733
734 The path part of a SCP request specifies the file to retrieve and from what
735 directory. The file part may not be omitted. The file is taken as an absolute
736 path from the root directory on the server. To specify a path relative to
737 the user's home directory on the server, prepend ~/ to the path portion.
738 If the user name is not embedded in the URL, it can be set with the
739 \fICURLOPT_USERPWD\fP or \fBCURLOPT_USERNAME\fP option.
740
741 scp://user@example.com/etc/issue - This specifies the file /etc/issue
742
743 scp://example.com/~/my-file - This specifies the file my-file in the
744 user's home directory on the server
745
746 .B SFTP
747
748 The path part of a SFTP request specifies the file to retrieve and from what
749 directory. If the file part is omitted then libcurl downloads the directory
750 listing for the directory specified.  If the path ends in a / then a directory
751 listing is returned instead of a file.  If the path is omitted entirely then
752 the directory listing for the root / home directory will be returned.
753 If the user name is not embedded in the URL, it can be set with the
754 \fICURLOPT_USERPWD\fP or \fBCURLOPT_USERNAME\fP option.
755
756 sftp://user:password@example.com/etc/issue - This specifies the file
757 /etc/issue
758
759 sftp://user@example.com/~/my-file - This specifies the file my-file in the
760 user's home directory
761
762 sftp://ssh.example.com/~/Documents/ - This requests a directory listing
763 of the Documents directory under the user's home directory
764
765 .B LDAP
766
767 The path part of a LDAP request can be used to specify the: Distinguished
768 Name, Attributes, Scope, Filter and Extension for a LDAP search. Each field
769 is separated by a question mark and when that field is not required an empty
770 string with the question mark separator should be included.
771
772 ldap://ldap.example.com/o=My%20Organisation - This will perform a LDAP search
773 with the DN as My Organisation.
774
775 ldap://ldap.example.com/o=My%20Organisation?postalAddress - This will perform
776 the same search but will only return postalAddress attributes.
777
778 ldap://ldap.example.com/?rootDomainNamingContext - This specifies an empty DN
779 and requests information about the rootDomainNamingContext attribute for an
780 Active Directory server.
781
782 For more information about the individual components of a LDAP URL please
783 see RFC4516.
784
785 .B RTMP
786
787 There's no official URL spec for RTMP so libcurl uses the URL syntax supported
788 by the underlying librtmp library. It has a syntax where it wants a
789 traditional URL, followed by a space and a series of space-separated
790 name=value pairs.
791
792 While space is not typically a "legal" letter, libcurl accepts them. When a
793 user wants to pass in a '#' (hash) character it will be treated as a fragment
794 and get cut off by libcurl if provided literally. You will instead have to
795 escape it by providing it as backslash and its ASCII value in hexadecimal:
796 "\\23".
797
798 .B NOTES
799
800 Starting with version 7.20.0, the fragment part of the URI will not be sent as
801 part of the path, which was previously the case.
802
803 \fICURLOPT_URL\fP is the only option that \fBmust\fP be set before
804 \fIcurl_easy_perform(3)\fP is called.
805
806 \fICURLOPT_PROTOCOLS\fP can be used to limit what protocols libcurl will use
807 for this transfer, independent of what libcurl has been compiled to
808 support. That may be useful if you accept the URL from an external source and
809 want to limit the accessibility.
810 .IP CURLOPT_PROTOCOLS
811 Pass a long that holds a bitmask of CURLPROTO_* defines. If used, this bitmask
812 limits what protocols libcurl may use in the transfer. This allows you to have
813 a libcurl built to support a wide range of protocols but still limit specific
814 transfers to only be allowed to use a subset of them. By default libcurl will
815 accept all protocols it supports. See also
816 \fICURLOPT_REDIR_PROTOCOLS\fP. (Added in 7.19.4)
817 .IP CURLOPT_REDIR_PROTOCOLS
818 Pass a long that holds a bitmask of CURLPROTO_* defines. If used, this bitmask
819 limits what protocols libcurl may use in a transfer that it follows to in a
820 redirect when \fICURLOPT_FOLLOWLOCATION\fP is enabled. This allows you to
821 limit specific transfers to only be allowed to use a subset of protocols in
822 redirections. By default libcurl will allow all protocols except for FILE and
823 SCP. This is a difference compared to pre-7.19.4 versions which
824 unconditionally would follow to all protocols supported. (Added in 7.19.4)
825 .IP CURLOPT_PROXY
826 Set HTTP proxy to use. The parameter should be a char * to a zero terminated
827 string holding the host name or dotted IP address. To specify port number in
828 this string, append :[port] to the end of the host name. The proxy string may
829 be prefixed with [protocol]:// since any such prefix will be ignored. The
830 proxy's port number may optionally be specified with the separate option
831 \fICURLOPT_PROXYPORT\fP. If not specified, libcurl will default to using port
832 1080 for proxies.
833
834 When you tell the library to use a HTTP proxy, libcurl will transparently
835 convert operations to HTTP even if you specify an FTP URL etc. This may have
836 an impact on what other features of the library you can use, such as
837 \fICURLOPT_QUOTE\fP and similar FTP specifics that don't work unless you
838 tunnel through the HTTP proxy. Such tunneling is activated with
839 \fICURLOPT_HTTPPROXYTUNNEL\fP.
840
841 libcurl respects the environment variables \fBhttp_proxy\fP, \fBftp_proxy\fP,
842 \fBall_proxy\fP etc, if any of those are set. The \fICURLOPT_PROXY\fP option
843 does however override any possibly set environment variables.
844
845 Setting the proxy string to "" (an empty string) will explicitly disable the
846 use of a proxy, even if there is an environment variable set for it.
847
848 Since 7.14.1, the proxy host string given in environment variables can be
849 specified the exact same way as the proxy can be set with \fICURLOPT_PROXY\fP,
850 include protocol prefix (http://) and embedded user + password.
851
852 Since 7.21.7, the proxy string may be specified with a protocol:// prefix to
853 specify alternative proxy protocols. Use socks4://, socks4a://, socks5:// or
854 socks5h:// (the last one to enable socks5 and asking the proxy to do the
855 resolving, also known as CURLPROXY_SOCKS5_HOSTNAME type) to request the
856 specific SOCKS version to be used. No protocol specified, http:// and all
857 others will be treated as HTTP proxies.
858 .IP CURLOPT_PROXYPORT
859 Pass a long with this option to set the proxy port to connect to unless it is
860 specified in the proxy string \fICURLOPT_PROXY\fP.
861 .IP CURLOPT_PROXYTYPE
862 Pass a long with this option to set type of the proxy. Available options for
863 this are \fICURLPROXY_HTTP\fP, \fICURLPROXY_HTTP_1_0\fP (added in 7.19.4),
864 \fICURLPROXY_SOCKS4\fP (added in 7.10), \fICURLPROXY_SOCKS5\fP,
865 \fICURLPROXY_SOCKS4A\fP (added in 7.18.0) and \fICURLPROXY_SOCKS5_HOSTNAME\fP
866 (added in 7.18.0). The HTTP type is default. (Added in 7.10)
867
868 If you set \fBCURLOPT_PROXYTYPE\fP to \fICURLPROXY_HTTP_1_0\fP, it will only
869 affect how libcurl speaks to a proxy when CONNECT is used. The HTTP version
870 used for "regular" HTTP requests is instead controlled with
871 \fICURLOPT_HTTP_VERSION\fP.
872 .IP CURLOPT_NOPROXY
873 Pass a pointer to a zero terminated string. The string consists of a comma
874 separated list of host names that do not require a proxy to get reached, even
875 if one is specified.  The only wildcard available is a single * character,
876 which matches all hosts, and effectively disables the proxy. Each name in this
877 list is matched as either a domain which contains the hostname, or the
878 hostname itself. For example, example.com would match example.com,
879 example.com:80, and www.example.com, but not www.notanexample.com or
880 example.com.othertld.  (Added in 7.19.4)
881 .IP CURLOPT_HTTPPROXYTUNNEL
882 Set the parameter to 1 to make the library tunnel all operations through a
883 given HTTP proxy. There is a big difference between using a proxy and to
884 tunnel through it. If you don't know what this means, you probably don't want
885 this tunneling option.
886 .IP CURLOPT_SOCKS5_GSSAPI_SERVICE
887 Pass a char * as parameter to a string holding the name of the service. The
888 default service name for a SOCKS5 server is rcmd/server-fqdn. This option
889 allows you to change it. (Added in 7.19.4)
890 .IP CURLOPT_SOCKS5_GSSAPI_NEC
891 Pass a long set to 1 to enable or 0 to disable. As part of the gssapi
892 negotiation a protection mode is negotiated. The RFC1961 says in section
893 4.3/4.4 it should be protected, but the NEC reference implementation does not.
894 If enabled, this option allows the unprotected exchange of the protection mode
895 negotiation. (Added in 7.19.4).
896 .IP CURLOPT_INTERFACE
897 Pass a char * as parameter. This sets the interface name to use as outgoing
898 network interface. The name can be an interface name, an IP address, or a host
899 name.
900
901 Starting with 7.24.0: If the parameter starts with "if!" then it is treated as
902 only as interface name and no attempt will ever be named to do treat it as an
903 IP address or to do name resolution on it.  If the parameter starts with
904 \&"host!" it is treated as either an IP address or a hostname.  Hostnames are
905 resolved synchronously.  Using the if! format is highly recommended when using
906 the multi interfaces to avoid allowing the code to block.  If "if!" is
907 specified but the parameter does not match an existing interface,
908 CURLE_INTERFACE_FAILED is returned.
909 .IP CURLOPT_LOCALPORT
910 Pass a long. This sets the local port number of the socket used for
911 connection. This can be used in combination with \fICURLOPT_INTERFACE\fP and
912 you are recommended to use \fICURLOPT_LOCALPORTRANGE\fP as well when this is
913 set. Valid port numbers are 1 - 65535. (Added in 7.15.2)
914 .IP CURLOPT_LOCALPORTRANGE
915 Pass a long. This is the number of attempts libcurl will make to find a
916 working local port number. It starts with the given \fICURLOPT_LOCALPORT\fP
917 and adds one to the number for each retry. Setting this to 1 or below will
918 make libcurl do only one try for the exact port number. Port numbers by nature
919 are scarce resources that will be busy at times so setting this value to
920 something too low might cause unnecessary connection setup failures. (Added in
921 7.15.2)
922 .IP CURLOPT_DNS_CACHE_TIMEOUT
923 Pass a long, this sets the timeout in seconds. Name resolves will be kept in
924 memory for this number of seconds. Set to zero to completely disable
925 caching, or set to -1 to make the cached entries remain forever. By default,
926 libcurl caches this info for 60 seconds.
927
928 The name resolve functions of various libc implementations don't re-read name
929 server information unless explicitly told so (for example, by calling
930 \fIres_init(3)\fP). This may cause libcurl to keep using the older server even
931 if DHCP has updated the server info, and this may look like a DNS cache issue
932 to the casual libcurl-app user.
933 .IP CURLOPT_DNS_USE_GLOBAL_CACHE
934 Pass a long. If the value is 1, it tells curl to use a global DNS cache
935 that will survive between easy handle creations and deletions. This is not
936 thread-safe and this will use a global variable.
937
938 \fBWARNING:\fP this option is considered obsolete. Stop using it. Switch over
939 to using the share interface instead! See \fICURLOPT_SHARE\fP and
940 \fIcurl_share_init(3)\fP.
941 .IP CURLOPT_BUFFERSIZE
942 Pass a long specifying your preferred size (in bytes) for the receive buffer
943 in libcurl.  The main point of this would be that the write callback gets
944 called more often and with smaller chunks. This is just treated as a request,
945 not an order. You cannot be guaranteed to actually get the given size. (Added
946 in 7.10)
947
948 This size is by default set as big as possible (CURL_MAX_WRITE_SIZE), so it
949 only makes sense to use this option if you want it smaller.
950 .IP CURLOPT_PORT
951 Pass a long specifying what remote port number to connect to, instead of the
952 one specified in the URL or the default port for the used protocol.
953 .IP CURLOPT_TCP_NODELAY
954 Pass a long specifying whether the TCP_NODELAY option is to be set or cleared
955 (1 = set, 0 = clear). The option is cleared by default. This will have no
956 effect after the connection has been established.
957
958 Setting this option will disable TCP's Nagle algorithm. The purpose of this
959 algorithm is to try to minimize the number of small packets on the network
960 (where "small packets" means TCP segments less than the Maximum Segment Size
961 (MSS) for the network).
962
963 Maximizing the amount of data sent per TCP segment is good because it
964 amortizes the overhead of the send. However, in some cases (most notably
965 telnet or rlogin) small segments may need to be sent without delay. This is
966 less efficient than sending larger amounts of data at a time, and can
967 contribute to congestion on the network if overdone.
968 .IP CURLOPT_ADDRESS_SCOPE
969 Pass a long specifying the scope_id value to use when connecting to IPv6
970 link-local or site-local addresses. (Added in 7.19.0)
971 .IP CURLOPT_TCP_KEEPALIVE
972 Pass a long. If set to 1, TCP keepalive probes will be sent. The delay and
973 frequency of these probes can be controlled by the \fICURLOPT_TCP_KEEPIDLE\fP
974 and \fICURLOPT_TCP_KEEPINTVL\fP options, provided the operating system supports
975 them. Set to 0 (default behavior) to disable keepalive probes (Added in
976 7.25.0).
977 .IP CURLOPT_TCP_KEEPIDLE
978 Pass a long. Sets the delay, in seconds, that the operating system will wait
979 while the connection is idle before sending keepalive probes. Not all operating
980 systems support this option. (Added in 7.25.0)
981 .IP CURLOPT_TCP_KEEPINTVL
982 Pass a long. Sets the interval, in seconds, that the operating system will wait
983 between sending keepalive probes. Not all operating systems support this
984 option. (Added in 7.25.0)
985 .SH NAMES and PASSWORDS OPTIONS (Authentication)
986 .IP CURLOPT_NETRC
987 This parameter controls the preference of libcurl between using user names and
988 passwords from your \fI~/.netrc\fP file, relative to user names and passwords
989 in the URL supplied with \fICURLOPT_URL\fP.
990
991 libcurl uses a user name (and supplied or prompted password) supplied with
992 \fICURLOPT_USERPWD\fP in preference to any of the options controlled by this
993 parameter.
994
995 Pass a long, set to one of the values described below.
996 .RS
997 .IP CURL_NETRC_OPTIONAL
998 The use of your \fI~/.netrc\fP file is optional, and information in the URL is
999 to be preferred.  The file will be scanned for the host and user name (to
1000 find the password only) or for the host only, to find the first user name and
1001 password after that \fImachine\fP, which ever information is not specified in
1002 the URL.
1003
1004 Undefined values of the option will have this effect.
1005 .IP CURL_NETRC_IGNORED
1006 The library will ignore the file and use only the information in the URL.
1007
1008 This is the default.
1009 .IP CURL_NETRC_REQUIRED
1010 This value tells the library that use of the file is required, to ignore the
1011 information in the URL, and to search the file for the host only.
1012 .RE
1013 Only machine name, user name and password are taken into account
1014 (init macros and similar things aren't supported).
1015
1016 libcurl does not verify that the file has the correct properties set (as the
1017 standard Unix ftp client does). It should only be readable by user.
1018 .IP CURLOPT_NETRC_FILE
1019 Pass a char * as parameter, pointing to a zero terminated string containing
1020 the full path name to the file you want libcurl to use as .netrc file. If this
1021 option is omitted, and \fICURLOPT_NETRC\fP is set, libcurl will attempt to
1022 find a .netrc file in the current user's home directory. (Added in 7.10.9)
1023 .IP CURLOPT_USERPWD
1024 Pass a char * as parameter, pointing to a zero terminated login details string
1025 for the connection. The format of which is: [user name]:[password].
1026
1027 When using NTLM, you can set the domain by prepending it to the user name and
1028 separating the domain and name with a forward (/) or backward slash (\\). Like
1029 this: "domain/user:password" or "domain\\user:password". Some HTTP servers (on
1030 Windows) support this style even for Basic authentication.
1031
1032 When using HTTP and \fICURLOPT_FOLLOWLOCATION\fP, libcurl might perform
1033 several requests to possibly different hosts. libcurl will only send this user
1034 and password information to hosts using the initial host name (unless
1035 \fICURLOPT_UNRESTRICTED_AUTH\fP is set), so if libcurl follows locations to
1036 other hosts it will not send the user and password to those. This is enforced
1037 to prevent accidental information leakage.
1038
1039 Use \fICURLOPT_HTTPAUTH\fP to specify the authentication method for HTTP based
1040 connections or \fICURLOPT_LOGIN_OPTIONS\fP to control IMAP, POP3 and SMTP
1041 options.
1042
1043 The user and password strings are not URL decoded, so there's no way to send
1044 in a user name containing a colon using this option. Use \fICURLOPT_USERNAME\fP
1045 for that, or include it in the URL.
1046 .IP CURLOPT_PROXYUSERPWD
1047 Pass a char * as parameter, which should be [user name]:[password] to use for
1048 the connection to the HTTP proxy. Both the name and the password will be URL
1049 decoded before use, so to include for example a colon in the user name you
1050 should encode it as %3A.
1051
1052 Use \fICURLOPT_PROXYAUTH\fP to specify the authentication method.
1053 .IP CURLOPT_USERNAME
1054 Pass a char * as parameter, which should be pointing to the zero terminated
1055 user name to use for the transfer.
1056
1057 \fBCURLOPT_USERNAME\fP sets the user name to be used in protocol
1058 authentication. You should not use this option together with the (older)
1059 CURLOPT_USERPWD option.
1060
1061 To specify the password and login options, along with the user name, use the
1062 \fICURLOPT_PASSWORD\fP and \fICURLOPT_LOGIN_OPTIONS\fP options. (Added in
1063 7.19.1)
1064 .IP CURLOPT_PASSWORD
1065 Pass a char * as parameter, which should be pointing to the zero terminated
1066 password to use for the transfer.
1067
1068 The CURLOPT_PASSWORD option should be used in conjunction with the
1069 \fICURLOPT_USERNAME\fP option. (Added in 7.19.1)
1070 .IP CURLOPT_LOGIN_OPTIONS
1071 (Added in 7.34.0) Pass a char * as parameter, which should be pointing to the
1072 zero terminated options string to use for the transfer.
1073
1074 At present only IMAP, POP3 and SMTP support login options. For more
1075 information about the login options please see RFC2384, RFC5092 and IETF draft
1076 draft-earhart-url-smtp-00.txt
1077
1078 \fBCURLOPT_LOGIN_OPTIONS\fP can be used to set protocol specific login options,
1079 such as the preferred authentication mechanism via "AUTH=NTLM" or "AUTH=*",
1080 and should be used in conjunction with the \fICURLOPT_USERNAME\fP option.
1081 .IP CURLOPT_PROXYUSERNAME
1082 Pass a char * as parameter, which should be pointing to the zero terminated
1083 user name to use for the transfer while connecting to Proxy.
1084
1085 The CURLOPT_PROXYUSERNAME option should be used in same way as the
1086 \fICURLOPT_PROXYUSERPWD\fP is used.  In comparison to
1087 \fICURLOPT_PROXYUSERPWD\fP the CURLOPT_PROXYUSERNAME allows the username to
1088 contain a colon, like in the following example: "sip:user@example.com". The
1089 CURLOPT_PROXYUSERNAME option is an alternative way to set the user name while
1090 connecting to Proxy.  There is no meaning to use it together with the
1091 \fICURLOPT_PROXYUSERPWD\fP option.
1092
1093 In order to specify the password to be used in conjunction with the user name
1094 use the \fICURLOPT_PROXYPASSWORD\fP option.  (Added in 7.19.1)
1095 .IP CURLOPT_PROXYPASSWORD
1096 Pass a char * as parameter, which should be pointing to the zero terminated
1097 password to use for the transfer while connecting to Proxy.
1098
1099 The CURLOPT_PROXYPASSWORD option should be used in conjunction with
1100 the \fICURLOPT_PROXYUSERNAME\fP option. (Added in 7.19.1)
1101 .IP CURLOPT_HTTPAUTH
1102 Pass a long as parameter, which is set to a bitmask, to tell libcurl which
1103 authentication method(s) you want it to use. The available bits are listed
1104 below. If more than one bit is set, libcurl will first query the site to see
1105 which authentication methods it supports and then pick the best one you allow
1106 it to use. For some methods, this will induce an extra network round-trip. Set
1107 the actual name and password with the \fICURLOPT_USERPWD\fP option or
1108 with the \fICURLOPT_USERNAME\fP and the \fICURLOPT_PASSWORD\fP options.
1109 (Added in 7.10.6)
1110 .RS
1111 .IP CURLAUTH_BASIC
1112 HTTP Basic authentication. This is the default choice, and the only method
1113 that is in wide-spread use and supported virtually everywhere. This sends
1114 the user name and password over the network in plain text, easily captured by
1115 others.
1116 .IP CURLAUTH_DIGEST
1117 HTTP Digest authentication.  Digest authentication is defined in RFC2617 and
1118 is a more secure way to do authentication over public networks than the
1119 regular old-fashioned Basic method.
1120 .IP CURLAUTH_DIGEST_IE
1121 HTTP Digest authentication with an IE flavor.  Digest authentication is
1122 defined in RFC2617 and is a more secure way to do authentication over public
1123 networks than the regular old-fashioned Basic method. The IE flavor is simply
1124 that libcurl will use a special "quirk" that IE is known to have used before
1125 version 7 and that some servers require the client to use. (This define was
1126 added in 7.19.3)
1127 .IP CURLAUTH_GSSNEGOTIATE
1128 HTTP GSS-Negotiate authentication. The GSS-Negotiate (also known as plain
1129 \&"Negotiate") method was designed by Microsoft and is used in their web
1130 applications. It is primarily meant as a support for Kerberos5 authentication
1131 but may also be used along with other authentication methods. For more
1132 information see IETF draft draft-brezak-spnego-http-04.txt.
1133
1134 You need to build libcurl with a suitable GSS-API library for this to work.
1135 .IP CURLAUTH_NTLM
1136 HTTP NTLM authentication. A proprietary protocol invented and used by
1137 Microsoft. It uses a challenge-response and hash concept similar to Digest, to
1138 prevent the password from being eavesdropped.
1139
1140 You need to build libcurl with either OpenSSL, GnuTLS or NSS support for this
1141 option to work, or build libcurl on Windows with SSPI support.
1142 .IP CURLAUTH_NTLM_WB
1143 NTLM delegating to winbind helper. Authentication is performed by a separate
1144 binary application that is executed when needed. The name of the application
1145 is specified at compile time but is typically /usr/bin/ntlm_auth
1146 (Added in 7.22.0)
1147
1148 Note that libcurl will fork when necessary to run the winbind application and
1149 kill it when complete, calling waitpid() to await its exit when done. On POSIX
1150 operating systems, killing the process will cause a SIGCHLD signal to be
1151 raised (regardless of whether \fICURLOPT_NOSIGNAL\fP is set), which must be
1152 handled intelligently by the application. In particular, the application must
1153 not unconditionally call wait() in its SIGCHLD signal handler to avoid being
1154 subject to a race condition.  This behavior is subject to change in future
1155 versions of libcurl.
1156 .IP CURLAUTH_ANY
1157 This is a convenience macro that sets all bits and thus makes libcurl pick any
1158 it finds suitable. libcurl will automatically select the one it finds most
1159 secure.
1160 .IP CURLAUTH_ANYSAFE
1161 This is a convenience macro that sets all bits except Basic and thus makes
1162 libcurl pick any it finds suitable. libcurl will automatically select the one
1163 it finds most secure.
1164 .IP CURLAUTH_ONLY
1165 This is a meta symbol. Or this value together with a single specific auth
1166 value to force libcurl to probe for un-restricted auth and if not, only that
1167 single auth algorithm is acceptable. (Added in 7.21.3)
1168 .RE
1169 .IP CURLOPT_TLSAUTH_TYPE
1170 Pass a long as parameter, which is set to a bitmask, to tell libcurl which
1171 authentication method(s) you want it to use for TLS authentication.
1172 .RS
1173 .IP CURLOPT_TLSAUTH_SRP
1174 TLS-SRP authentication. Secure Remote Password authentication for TLS is
1175 defined in RFC5054 and provides mutual authentication if both sides have a
1176 shared secret. To use TLS-SRP, you must also set the
1177 \fICURLOPT_TLSAUTH_USERNAME\fP and \fICURLOPT_TLSAUTH_PASSWORD\fP options.
1178
1179 You need to build libcurl with GnuTLS or OpenSSL with TLS-SRP support for this
1180 to work. (Added in 7.21.4)
1181 .RE
1182 .IP CURLOPT_TLSAUTH_USERNAME
1183 Pass a char * as parameter, which should point to the zero terminated username
1184 to use for the TLS authentication method specified with the
1185 \fICURLOPT_TLSAUTH_TYPE\fP option. Requires that the
1186 \fICURLOPT_TLS_PASSWORD\fP option also be set. (Added in 7.21.4)
1187 .IP CURLOPT_TLSAUTH_PASSWORD
1188 Pass a char * as parameter, which should point to the zero terminated password
1189 to use for the TLS authentication method specified with the
1190 \fICURLOPT_TLSAUTH_TYPE\fP option. Requires that the
1191 \fICURLOPT_TLS_USERNAME\fP option also be set. (Added in 7.21.4)
1192 .IP CURLOPT_PROXYAUTH
1193 Pass a long as parameter, which is set to a bitmask, to tell libcurl which
1194 authentication method(s) you want it to use for your proxy authentication.  If
1195 more than one bit is set, libcurl will first query the site to see what
1196 authentication methods it supports and then pick the best one you allow it to
1197 use. For some methods, this will induce an extra network round-trip. Set the
1198 actual name and password with the \fICURLOPT_PROXYUSERPWD\fP option. The
1199 bitmask can be constructed by or'ing together the bits listed above for the
1200 \fICURLOPT_HTTPAUTH\fP option. \fICURLOPT_PROXYAUTH\fP was added in 7.10.7
1201 .IP CURLOPT_SASL_IR
1202 Pass a long. If the value is 1, curl will send the initial response to the
1203 server in the first authentication packet in order to reduce the number of
1204 ping pong requests. Only applicable to supporting SASL authentication
1205 mechanisms and to the IMAP, POP3 and SMTP protocols. (Added in 7.31.0)
1206
1207 Note: Whilst IMAP supports this option there is no need to explicitly set it,
1208 as libcurl can determine the feature itself when the server supports the
1209 SASL-IR CAPABILITY.
1210 .IP CURLOPT_XOAUTH2_BEARER
1211 Pass a char * as parameter, which should point to the zero terminated OAuth
1212 2.0 Bearer Access Token for use with IMAP, POP3 and SMTP servers that support
1213 the OAuth 2.0 Authorization Framework. (Added in 7.33.0)
1214
1215 Note: The user name used to generate the Bearer Token should be supplied via
1216 the \fICURLOPT_USERNAME\fP option.
1217 .SH HTTP OPTIONS
1218 .IP CURLOPT_AUTOREFERER
1219 Pass a parameter set to 1 to enable this. When enabled, libcurl will
1220 automatically set the Referer: field in requests where it follows a Location:
1221 redirect.
1222 .IP CURLOPT_ACCEPT_ENCODING
1223 Sets the contents of the Accept-Encoding: header sent in a HTTP request, and
1224 enables decoding of a response when a Content-Encoding: header is received.
1225 Three encodings are supported: \fIidentity\fP, which does nothing,
1226 \fIdeflate\fP which requests the server to compress its response using the
1227 zlib algorithm, and \fIgzip\fP which requests the gzip algorithm.  If a
1228 zero-length string is set, then an Accept-Encoding: header containing all
1229 supported encodings is sent.
1230
1231 This is a request, not an order; the server may or may not do it.  This option
1232 must be set (to any non-NULL value) or else any unsolicited encoding done by
1233 the server is ignored. See the special file lib/README.encoding for details.
1234
1235 (This option was called CURLOPT_ENCODING before 7.21.6)
1236 .IP CURLOPT_TRANSFER_ENCODING
1237 Adds a request for compressed Transfer Encoding in the outgoing HTTP
1238 request. If the server supports this and so desires, it can respond with the
1239 HTTP response sent using a compressed Transfer-Encoding that will be
1240 automatically uncompressed by libcurl on reception.
1241
1242 Transfer-Encoding differs slightly from the Content-Encoding you ask for with
1243 \fBCURLOPT_ACCEPT_ENCODING\fP in that a Transfer-Encoding is strictly meant to
1244 be for the transfer and thus MUST be decoded before the data arrives in the
1245 client. Traditionally, Transfer-Encoding has been much less used and supported
1246 by both HTTP clients and HTTP servers.
1247
1248 (Added in 7.21.6)
1249 .IP CURLOPT_FOLLOWLOCATION
1250 A parameter set to 1 tells the library to follow any Location: header that the
1251 server sends as part of a HTTP header.
1252
1253 This means that the library will re-send the same request on the new location
1254 and follow new Location: headers all the way until no more such headers are
1255 returned. \fICURLOPT_MAXREDIRS\fP can be used to limit the number of redirects
1256 libcurl will follow.
1257
1258 Since 7.19.4, libcurl can limit what protocols it will automatically
1259 follow. The accepted protocols are set with \fICURLOPT_REDIR_PROTOCOLS\fP and
1260 it excludes the FILE protocol by default.
1261 .IP CURLOPT_UNRESTRICTED_AUTH
1262 A parameter set to 1 tells the library it can continue to send authentication
1263 (user+password) when following locations, even when hostname changed. This
1264 option is meaningful only when setting \fICURLOPT_FOLLOWLOCATION\fP.
1265 .IP CURLOPT_MAXREDIRS
1266 Pass a long. The set number will be the redirection limit. If that many
1267 redirections have been followed, the next redirect will cause an error
1268 (\fICURLE_TOO_MANY_REDIRECTS\fP). This option only makes sense if the
1269 \fICURLOPT_FOLLOWLOCATION\fP is used at the same time. Added in 7.15.1:
1270 Setting the limit to 0 will make libcurl refuse any redirect. Set it to -1 for
1271 an infinite number of redirects (which is the default)
1272 .IP CURLOPT_POSTREDIR
1273 Pass a bitmask to control how libcurl acts on redirects after POSTs that get a
1274 301, 302 or 303 response back.  A parameter with bit 0 set (value
1275 \fBCURL_REDIR_POST_301\fP) tells the library to respect RFC2616/10.3.2 and not
1276 convert POST requests into GET requests when following a 301 redirection.
1277 Setting bit 1 (value \fBCURL_REDIR_POST_302\fP) makes libcurl maintain the
1278 request method after a 302 redirect whilst setting bit 2 (value
1279 \fBCURL_REDIR_POST_303\fP) makes libcurl maintain the request method after a
1280 303 redirect. The value \fBCURL_REDIR_POST_ALL\fP is a convenience define that
1281 sets all three bits.
1282
1283 The non-RFC behaviour is ubiquitous in web browsers, so the library does the
1284 conversion by default to maintain consistency. However, a server may require a
1285 POST to remain a POST after such a redirection. This option is meaningful only
1286 when setting \fICURLOPT_FOLLOWLOCATION\fP.  (Added in 7.17.1) (This option was
1287 known as CURLOPT_POST301 up to 7.19.0 as it only supported the 301 then)
1288 .IP CURLOPT_PUT
1289 A parameter set to 1 tells the library to use HTTP PUT to transfer data. The
1290 data should be set with \fICURLOPT_READDATA\fP and \fICURLOPT_INFILESIZE\fP.
1291
1292 This option is deprecated and starting with version 7.12.1 you should instead
1293 use \fICURLOPT_UPLOAD\fP.
1294 .IP CURLOPT_POST
1295 A parameter set to 1 tells the library to do a regular HTTP post. This will
1296 also make the library use a "Content-Type:
1297 application/x-www-form-urlencoded" header. (This is by far the most commonly
1298 used POST method).
1299
1300 Use one of \fICURLOPT_POSTFIELDS\fP or \fICURLOPT_COPYPOSTFIELDS\fP options to
1301 specify what data to post and \fICURLOPT_POSTFIELDSIZE\fP or
1302 \fICURLOPT_POSTFIELDSIZE_LARGE\fP to set the data size.
1303
1304 Optionally, you can provide data to POST using the \fICURLOPT_READFUNCTION\fP
1305 and \fICURLOPT_READDATA\fP options but then you must make sure to not set
1306 \fICURLOPT_POSTFIELDS\fP to anything but NULL. When providing data with a
1307 callback, you must transmit it using chunked transfer-encoding or you must set
1308 the size of the data with the \fICURLOPT_POSTFIELDSIZE\fP or
1309 \fICURLOPT_POSTFIELDSIZE_LARGE\fP option. To enable chunked encoding, you
1310 simply pass in the appropriate Transfer-Encoding header, see the
1311 post-callback.c example.
1312
1313 You can override the default POST Content-Type: header by setting your own
1314 with \fICURLOPT_HTTPHEADER\fP.
1315
1316 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
1317 You can disable this header with \fICURLOPT_HTTPHEADER\fP as usual.
1318
1319 If you use POST to a HTTP 1.1 server, you can send data without knowing the
1320 size before starting the POST if you use chunked encoding. You enable this by
1321 adding a header like "Transfer-Encoding: chunked" with
1322 \fICURLOPT_HTTPHEADER\fP. With HTTP 1.0 or without chunked transfer, you must
1323 specify the size in the request.
1324
1325 When setting \fICURLOPT_POST\fP to 1, it will automatically set
1326 \fICURLOPT_NOBODY\fP to 0 (since 7.14.1).
1327
1328 If you issue a POST request and then want to make a HEAD or GET using the same
1329 re-used handle, you must explicitly set the new request type using
1330 \fICURLOPT_NOBODY\fP or \fICURLOPT_HTTPGET\fP or similar.
1331 .IP CURLOPT_POSTFIELDS
1332 Pass a void * as parameter, which should be the full data to post in a HTTP
1333 POST operation. You must make sure that the data is formatted the way you want
1334 the server to receive it. libcurl will not convert or encode it for you. Most
1335 web servers will assume this data to be url-encoded.
1336
1337 The pointed data are NOT copied by the library: as a consequence, they must
1338 be preserved by the calling application until the transfer finishes.
1339
1340 This POST is a normal application/x-www-form-urlencoded kind (and libcurl will
1341 set that Content-Type by default when this option is used), which is the most
1342 commonly used one by HTML forms. See also the \fICURLOPT_POST\fP. Using
1343 \fICURLOPT_POSTFIELDS\fP implies \fICURLOPT_POST\fP.
1344
1345 If you want to do a zero-byte POST, you need to set
1346 \fICURLOPT_POSTFIELDSIZE\fP explicitly to zero, as simply setting
1347 \fICURLOPT_POSTFIELDS\fP to NULL or "" just effectively disables the sending
1348 of the specified string. libcurl will instead assume that you'll send the POST
1349 data using the read callback!
1350
1351 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
1352 You can disable this header with \fICURLOPT_HTTPHEADER\fP as usual.
1353
1354 To make multipart/formdata posts (aka RFC2388-posts), check out the
1355 \fICURLOPT_HTTPPOST\fP option.
1356 .IP CURLOPT_POSTFIELDSIZE
1357 If you want to post data to the server without letting libcurl do a strlen()
1358 to measure the data size, this option must be used. When this option is used
1359 you can post fully binary data, which otherwise is likely to fail. If this
1360 size is set to -1, the library will use strlen() to get the size.
1361 .IP CURLOPT_POSTFIELDSIZE_LARGE
1362 Pass a curl_off_t as parameter. Use this to set the size of the
1363 \fICURLOPT_POSTFIELDS\fP data to prevent libcurl from doing strlen() on the
1364 data to figure out the size. This is the large file version of the
1365 \fICURLOPT_POSTFIELDSIZE\fP option. (Added in 7.11.1)
1366 .IP CURLOPT_COPYPOSTFIELDS
1367 Pass a char * as parameter, which should be the full data to post in a HTTP
1368 POST operation. It behaves as the \fICURLOPT_POSTFIELDS\fP option, but the
1369 original data are copied by the library, allowing the application to overwrite
1370 the original data after setting this option.
1371
1372 Because data are copied, care must be taken when using this option in
1373 conjunction with \fICURLOPT_POSTFIELDSIZE\fP or
1374 \fICURLOPT_POSTFIELDSIZE_LARGE\fP: If the size has not been set prior to
1375 \fICURLOPT_COPYPOSTFIELDS\fP, the data are assumed to be a NUL-terminated
1376 string; else the stored size informs the library about the data byte count to
1377 copy. In any case, the size must not be changed after
1378 \fICURLOPT_COPYPOSTFIELDS\fP, unless another \fICURLOPT_POSTFIELDS\fP or
1379 \fICURLOPT_COPYPOSTFIELDS\fP option is issued.
1380 (Added in 7.17.1)
1381 .IP CURLOPT_HTTPPOST
1382 Tells libcurl you want a multipart/formdata HTTP POST to be made and you
1383 instruct what data to pass on to the server.  Pass a pointer to a linked list
1384 of curl_httppost structs as parameter.  The easiest way to create such a
1385 list, is to use \fIcurl_formadd(3)\fP as documented. The data in this list
1386 must remain intact until you close this curl handle again with
1387 \fIcurl_easy_cleanup(3)\fP.
1388
1389 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
1390 You can disable this header with \fICURLOPT_HTTPHEADER\fP as usual.
1391
1392 When setting \fICURLOPT_HTTPPOST\fP, it will automatically set
1393 \fICURLOPT_NOBODY\fP to 0 (since 7.14.1).
1394 .IP CURLOPT_REFERER
1395 Pass a pointer to a zero terminated string as parameter. It will be used to
1396 set the Referer: header in the http request sent to the remote server. This
1397 can be used to fool servers or scripts. You can also set any custom header
1398 with \fICURLOPT_HTTPHEADER\fP.
1399 .IP CURLOPT_USERAGENT
1400 Pass a pointer to a zero terminated string as parameter. It will be used to
1401 set the User-Agent: header in the http request sent to the remote server. This
1402 can be used to fool servers or scripts. You can also set any custom header
1403 with \fICURLOPT_HTTPHEADER\fP.
1404 .IP CURLOPT_HTTPHEADER
1405 Pass a pointer to a linked list of HTTP headers to pass to the server and/or
1406 proxy in your HTTP request. The same list is used for both host and proxy
1407 requests!
1408
1409 The linked list should be a fully valid list of \fBstruct curl_slist\fP
1410 structs properly filled in. Use \fIcurl_slist_append(3)\fP to create the list
1411 and \fIcurl_slist_free_all(3)\fP to clean up an entire list. If you add a
1412 header that is otherwise generated and used by libcurl internally, your added
1413 one will be used instead. If you add a header with no content as in 'Accept:'
1414 (no data on the right side of the colon), the internally used header will get
1415 disabled. With this option you can add new headers, replace internal headers
1416 and remove internal headers. To add a header with no content (nothing to the
1417 right side of the colon), use the form 'MyHeader;' (note the ending
1418 semicolon).
1419
1420 The headers included in the linked list must not be CRLF-terminated, because
1421 curl adds CRLF after each header item. Failure to comply with this will result
1422 in strange bugs because the server will most likely ignore part of the headers
1423 you specified.
1424
1425 The first line in a request (containing the method, usually a GET or POST) is
1426 not a header and cannot be replaced using this option. Only the lines
1427 following the request-line are headers. Adding this method line in this list
1428 of headers will only cause your request to send an invalid header.
1429
1430 Pass a NULL to this to reset back to no custom headers.
1431
1432 The most commonly replaced headers have "shortcuts" in the options
1433 \fICURLOPT_COOKIE\fP, \fICURLOPT_USERAGENT\fP and \fICURLOPT_REFERER\fP.
1434
1435 There's an alternative option that sets or replaces headers only for requests
1436 that are sent with CONNECT to a proxy: \fICURLOPT_PROXYHEADER\fP. Use
1437 \fICURLOPT_HEADEROPT\fP to control the behavior.
1438 .IP CURLOPT_HEADEROPT
1439 Pass a long that is a bitmask of options of how to deal with headers. The two
1440 mutually exclusive options are:
1441
1442 CURLHEADER_UNIFIED - keep working as before. This means CURLOPT_HTTPHEADER
1443 headers will be used in requests both to servers and proxies. With this option
1444 enabled, \fICURLOPT_PROXYHEADER\fP will not have any effect.
1445
1446 CURLHEADER_SEPARATE - makes \fICURLOPT_HTTPHEADER\fP headers only get sent to
1447 a server and not to a proxy. Proxy headers must be set with
1448 \fICURLOPT_PROXYHEADER\fP to get used. Note that if a non-CONNECT request is
1449 sent to a proxy, libcurl will send both server headers and proxy headers. When
1450 doing CONNECT, libcurl will send \fICURLOPT_PROXYHEADER\fP headers only do the
1451 proxy and then \fICURLOPT_HTTPHEADER\fP headers only to the server.
1452
1453 (Added in 7.37.0)
1454 .IP CURLOPT_PROXYHEADER
1455 Pass a pointer to a linked list of HTTP headers to pass in your HTTP request
1456 sent to a proxy. The rules for this list is identical to the
1457 \fICURLOPT_HTTPHEADER\fP option's.
1458
1459 The headers set with this option is only ever used in requests sent to a proxy
1460 - when there's also a request sent to a host.
1461
1462 The first line in a request (containing the method, usually a GET or POST) is
1463 NOT a header and cannot be replaced using this option. Only the lines
1464 following the request-line are headers. Adding this method line in this list
1465 of headers will only cause your request to send an invalid header.
1466
1467 Pass a NULL to this to reset back to no custom headers.
1468
1469 This option was added in libcurl 7.37.0.
1470 .IP CURLOPT_HTTP200ALIASES
1471 Pass a pointer to a linked list of aliases to be treated as valid HTTP 200
1472 responses.  Some servers respond with a custom header response line.  For
1473 example, IceCast servers respond with "ICY 200 OK".  By including this string
1474 in your list of aliases, the response will be treated as a valid HTTP header
1475 line such as "HTTP/1.0 200 OK". (Added in 7.10.3)
1476
1477 The linked list should be a fully valid list of struct curl_slist structs, and
1478 be properly filled in.  Use \fIcurl_slist_append(3)\fP to create the list and
1479 \fIcurl_slist_free_all(3)\fP to clean up an entire list.
1480
1481 The alias itself is not parsed for any version strings. Before libcurl 7.16.3,
1482 Libcurl used the value set by option \fICURLOPT_HTTP_VERSION\fP, but starting
1483 with 7.16.3 the protocol is assumed to match HTTP 1.0 when an alias matched.
1484 .IP CURLOPT_COOKIE
1485 Pass a pointer to a zero terminated string as parameter. It will be used to
1486 set a cookie in the http request. The format of the string should be
1487 NAME=CONTENTS, where NAME is the cookie name and CONTENTS is what the cookie
1488 should contain.
1489
1490 If you need to set multiple cookies, you need to set them all using a single
1491 option and thus you need to concatenate them all in one single string. Set
1492 multiple cookies in one string like this: "name1=content1; name2=content2;"
1493 etc.
1494
1495 This option sets the cookie header explicitly in the outgoing request(s). If
1496 multiple requests are done due to authentication, followed redirections or
1497 similar, they will all get this cookie passed on.
1498
1499 Using this option multiple times will only make the latest string override the
1500 previous ones.
1501 .IP CURLOPT_COOKIEFILE
1502 Pass a pointer to a zero terminated string as parameter. It should contain the
1503 name of your file holding cookie data to read. The cookie data may be in
1504 Netscape / Mozilla cookie data format or just regular HTTP-style headers
1505 dumped to a file.
1506
1507 Given an empty or non-existing file or by passing the empty string (""), this
1508 option will enable cookies for this curl handle, making it understand and
1509 parse received cookies and then use matching cookies in future requests.
1510
1511 If you use this option multiple times, you just add more files to read.
1512 Subsequent files will add more cookies.
1513 .IP CURLOPT_COOKIEJAR
1514 Pass a file name as char *, zero terminated. This will make libcurl write all
1515 internally known cookies to the specified file when \fIcurl_easy_cleanup(3)\fP
1516 is called. If no cookies are known, no file will be created. Specify "-" to
1517 instead have the cookies written to stdout. Using this option also enables
1518 cookies for this session, so if you for example follow a location it will make
1519 matching cookies get sent accordingly.
1520
1521 If the cookie jar file can't be created or written to (when the
1522 \fIcurl_easy_cleanup(3)\fP is called), libcurl will not and cannot report an
1523 error for this. Using \fICURLOPT_VERBOSE\fP or \fICURLOPT_DEBUGFUNCTION\fP
1524 will get a warning to display, but that is the only visible feedback you get
1525 about this possibly lethal situation.
1526 .IP CURLOPT_COOKIESESSION
1527 Pass a long set to 1 to mark this as a new cookie "session". It will force
1528 libcurl to ignore all cookies it is about to load that are "session cookies"
1529 from the previous session. By default, libcurl always stores and loads all
1530 cookies, independent if they are session cookies or not. Session cookies are
1531 cookies without expiry date and they are meant to be alive and existing for
1532 this "session" only.
1533 .IP CURLOPT_COOKIELIST
1534 Pass a char * to a cookie string. Cookie can be either in Netscape / Mozilla
1535 format or just regular HTTP-style header (Set-Cookie: ...) format. If cURL
1536 cookie engine was not enabled it will enable its cookie engine.  Passing a
1537 magic string \&"ALL" will erase all cookies known by cURL. (Added in 7.14.1)
1538 Passing the special string \&"SESS" will only erase all session cookies known
1539 by cURL. (Added in 7.15.4) Passing the special string \&"FLUSH" will write
1540 all cookies known by cURL to the file specified by \fICURLOPT_COOKIEJAR\fP.
1541 (Added in 7.17.1)
1542 .IP CURLOPT_HTTPGET
1543 Pass a long. If the long is 1, this forces the HTTP request to get back
1544 to GET. Usable if a POST, HEAD, PUT, or a custom request has been used
1545 previously using the same curl handle.
1546
1547 When setting \fICURLOPT_HTTPGET\fP to 1, it will automatically set
1548 \fICURLOPT_NOBODY\fP to 0 and \fICURLOPT_UPLOAD\fP to 0.
1549 .IP CURLOPT_HTTP_VERSION
1550 Pass a long, set to one of the values described below. They force libcurl to
1551 use the specific HTTP versions. This is not sensible to do unless you have a
1552 good reason. You have to set this option if you want to use libcurl's HTTP 2.0
1553 support.
1554 .RS
1555 .IP CURL_HTTP_VERSION_NONE
1556 We don't care about what version the library uses. libcurl will use whatever
1557 it thinks fit.
1558 .IP CURL_HTTP_VERSION_1_0
1559 Enforce HTTP 1.0 requests.
1560 .IP CURL_HTTP_VERSION_1_1
1561 Enforce HTTP 1.1 requests.
1562 .IP CURL_HTTP_VERSION_2_0
1563 Attempt HTTP 2.0 requests. libcurl will fall back to HTTP 1.x if HTTP 2.0
1564 can't be negotiated with the server.
1565 .RE
1566 .IP CURLOPT_IGNORE_CONTENT_LENGTH
1567 Ignore the Content-Length header. This is useful for Apache 1.x (and similar
1568 servers) which will report incorrect content length for files over 2
1569 gigabytes. If this option is used, curl will not be able to accurately report
1570 progress, and will simply stop the download when the server ends the
1571 connection. (added in 7.14.1)
1572 .IP CURLOPT_HTTP_CONTENT_DECODING
1573 Pass a long to tell libcurl how to act on content decoding. If set to zero,
1574 content decoding will be disabled. If set to 1 it is enabled. Libcurl has no
1575 default content decoding but requires you to use \fICURLOPT_ACCEPT_ENCODING\fP
1576 for that. (added in 7.16.2)
1577 .IP CURLOPT_HTTP_TRANSFER_DECODING
1578 Pass a long to tell libcurl how to act on transfer decoding. If set to zero,
1579 transfer decoding will be disabled, if set to 1 it is enabled
1580 (default). libcurl does chunked transfer decoding by default unless this
1581 option is set to zero. (added in 7.16.2)
1582 .IP CURLOPT_EXPECT_100_TIMEOUT_MS
1583 Pass a long to tell libcurl the number of milliseconds to wait for a server
1584 response with the HTTP status 100 (Continue), 417 (Expectation Failed) or
1585 similar after sending a HTTP request containing an Expect: 100-continue
1586 header. If this times out before a response is received, the request body is
1587 sent anyway. By default, libcurl waits 1000 milliseconds. (Added in 7.36.0)
1588 .SH SMTP OPTIONS
1589 .IP CURLOPT_MAIL_FROM
1590 Pass a pointer to a zero terminated string as parameter. This should be used
1591 to specify the sender's email address when sending SMTP mail with libcurl.
1592
1593 An originator email address should be specified with angled brackets (<>)
1594 around it, which if not specified, will be added by libcurl from version
1595 7.21.4 onwards. Failing to provide such brackets may cause the server to
1596 reject the email.
1597
1598 If this parameter is not specified then an empty address will be sent to the
1599 mail server which may or may not cause the email to be rejected.
1600
1601 (Added in 7.20.0)
1602 .IP CURLOPT_MAIL_RCPT
1603 Pass a pointer to a linked list of recipients to pass to the server in your
1604 SMTP mail request. The linked list should be a fully valid list of \fBstruct
1605 curl_slist\fP structs properly filled in. Use \fIcurl_slist_append(3)\fP to
1606 create the list and \fIcurl_slist_free_all(3)\fP to clean up an entire list.
1607
1608 When performing a mail transfer, each recipient should be specified within a
1609 pair of angled brackets (<>), however, should you not use an angled bracket as
1610 the first character libcurl will assume you provided a single email address and
1611 enclose that address within brackets for you. (Added in 7.20.0)
1612
1613 When performing an address verification (VRFY command), each recipient should
1614 be specified as the user name or user name and domain (as per Section 3.5 of
1615 RFC5321). (Added in 7.34.0)
1616
1617 When performing a mailing list expand (EXPN command), each recipient should be
1618 specified using the mailing list name, such as "Friends" or "London-Office".
1619 (Added in 7.34.0)
1620 .IP CURLOPT_MAIL_AUTH
1621 Pass a pointer to a zero terminated string as parameter. This will be used
1622 to specify the authentication address (identity) of a submitted message that
1623 is being relayed to another server.
1624
1625 This optional parameter allows co-operating agents in a trusted environment to
1626 communicate the authentication of individual messages and should only be used
1627 by the application program, using libcurl, if the application is itself a
1628 mail server acting in such an environment. If the application is operating as
1629 such and the AUTH address is not known or is invalid, then an empty string
1630 should be used for this parameter.
1631
1632 Unlike CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT, the address should not be
1633 specified within a pair of angled brackets (<>). However, if an empty string
1634 is used then a pair of brackets will be sent by libcurl as required by
1635 RFC2554.
1636
1637 (Added in 7.25.0)
1638 .SH TFTP OPTIONS
1639 .IP CURLOPT_TFTP_BLKSIZE
1640 Specify block size to use for TFTP data transmission. Valid range as per
1641 RFC2348 is 8-65464 bytes. The default of 512 bytes will be used if this option
1642 is not specified. The specified block size will only be used pending support
1643 by the remote server. If the server does not return an option acknowledgement
1644 or returns an option acknowledgement with no blksize, the default of 512 bytes
1645 will be used. (added in 7.19.4)
1646 .SH FTP OPTIONS
1647 .IP CURLOPT_FTPPORT
1648 Pass a pointer to a zero terminated string as parameter. It will be used to
1649 get the IP address to use for the FTP PORT instruction. The PORT instruction
1650 tells the remote server to connect to our specified IP address. The string may
1651 be a plain IP address, a host name, a network interface name (under Unix) or
1652 just a '-' symbol to let the library use your system's default IP
1653 address. Default FTP operations are passive, and thus won't use PORT.
1654
1655 The address can be followed by a ':' to specify a port, optionally followed by
1656 a '-' to specify a port range.  If the port specified is 0, the operating
1657 system will pick a free port.  If a range is provided and all ports in the
1658 range are not available, libcurl will report CURLE_FTP_PORT_FAILED for the
1659 handle.  Invalid port/range settings are ignored.  IPv6 addresses followed by
1660 a port or portrange have to be in brackets.  IPv6 addresses without port/range
1661 specifier can be in brackets.  (added in 7.19.5)
1662
1663 Examples with specified ports:
1664
1665 .nf
1666   eth0:0
1667   192.168.1.2:32000-33000
1668   curl.se:32123
1669   [::1]:1234-4567
1670 .fi
1671
1672 You disable PORT again and go back to using the passive version by setting
1673 this option to NULL.
1674 .IP CURLOPT_QUOTE
1675 Pass a pointer to a linked list of FTP or SFTP commands to pass to the server
1676 prior to your FTP request. This will be done before any other commands are
1677 issued (even before the CWD command for FTP). The linked list should be a
1678 fully valid list of 'struct curl_slist' structs properly filled in with text
1679 strings. Use \fIcurl_slist_append(3)\fP to append strings (commands) to the
1680 list, and clear the entire list afterwards with
1681 \fIcurl_slist_free_all(3)\fP. Disable this operation again by setting a NULL
1682 to this option. When speaking to a FTP (or SFTP since 7.24.0) server, prefix
1683 the command with an asterisk (*) to make libcurl continue even if the command
1684 fails as by default libcurl will stop at first failure.
1685
1686 The set of valid FTP commands depends on the server (see RFC959 for a list of
1687 mandatory commands).
1688
1689 The valid SFTP commands are: chgrp, chmod, chown, ln, mkdir, pwd, rename, rm,
1690 rmdir, symlink (see
1691 .BR curl (1))
1692 (SFTP support added in 7.16.3)
1693 .IP CURLOPT_POSTQUOTE
1694 Pass a pointer to a linked list of FTP or SFTP commands to pass to the server
1695 after your FTP transfer request. The commands will only be run if no error
1696 occurred. The linked list should be a fully valid list of struct curl_slist
1697 structs properly filled in as described for \fICURLOPT_QUOTE\fP. Disable this
1698 operation again by setting a NULL to this option.
1699 .IP CURLOPT_PREQUOTE
1700 Pass a pointer to a linked list of FTP commands to pass to the server after
1701 the transfer type is set. The linked list should be a fully valid list of
1702 struct curl_slist structs properly filled in as described for
1703 \fICURLOPT_QUOTE\fP. Disable this operation again by setting a NULL to this
1704 option. Before version 7.16.0, if you also set \fICURLOPT_NOBODY\fP to 1, this
1705 option didn't work.
1706 .IP CURLOPT_DIRLISTONLY
1707 A parameter set to 1 tells the library to just list the names of files in a
1708 directory, instead of doing a full directory listing that would include file
1709 sizes, dates etc. This works for FTP and SFTP URLs.
1710
1711 This causes an FTP NLST command to be sent on an FTP server.  Beware that some
1712 FTP servers list only files in their response to NLST; they might not include
1713 subdirectories and symbolic links.
1714
1715 Setting this option to 1 also implies a directory listing even if the URL
1716 doesn't end with a slash, which otherwise is necessary.
1717
1718 Do NOT use this option if you also use \fICURLOPT_WILDCARDMATCH\fP as it will
1719 effectively break that feature then.
1720
1721 (This option was known as CURLOPT_FTPLISTONLY up to 7.16.4)
1722 .IP CURLOPT_APPEND
1723 A parameter set to 1 tells the library to append to the remote file instead of
1724 overwrite it. This is only useful when uploading to an FTP site.
1725
1726 (This option was known as CURLOPT_FTPAPPEND up to 7.16.4)
1727 .IP CURLOPT_FTP_USE_EPRT
1728 Pass a long. If the value is 1, it tells curl to use the EPRT (and
1729 LPRT) command when doing active FTP downloads (which is enabled by
1730 \fICURLOPT_FTPPORT\fP). Using EPRT means that it will first attempt to use
1731 EPRT and then LPRT before using PORT, but if you pass zero to this
1732 option, it will not try using EPRT or LPRT, only plain PORT. (Added in 7.10.5)
1733
1734 If the server is an IPv6 host, this option will have no effect as of 7.12.3.
1735 .IP CURLOPT_FTP_USE_EPSV
1736 Pass a long. If the value is 1, it tells curl to use the EPSV command
1737 when doing passive FTP downloads (which it always does by default). Using EPSV
1738 means that it will first attempt to use EPSV before using PASV, but if you
1739 pass zero to this option, it will not try using EPSV, only plain PASV.
1740
1741 If the server is an IPv6 host, this option will have no effect as of 7.12.3.
1742 .IP CURLOPT_FTP_USE_PRET
1743 Pass a long. If the value is 1, it tells curl to send a PRET command before
1744 PASV (and EPSV). Certain FTP servers, mainly drftpd, require this non-standard
1745 command for directory listings as well as up and downloads in PASV mode. Has
1746 no effect when using the active FTP transfers mode.  (Added in 7.20.0)
1747 .IP CURLOPT_FTP_CREATE_MISSING_DIRS
1748 Pass a long. If the value is 1, curl will attempt to create any remote
1749 directory that it fails to CWD into. CWD is the command that changes working
1750 directory. (Added in 7.10.7)
1751
1752 This setting also applies to SFTP-connections. curl will attempt to create
1753 the remote directory if it can't obtain a handle to the target-location. The
1754 creation will fail if a file of the same name as the directory to create
1755 already exists or lack of permissions prevents creation. (Added in 7.16.3)
1756
1757 Starting with 7.19.4, you can also set this value to 2, which will make
1758 libcurl retry the CWD command again if the subsequent MKD command fails. This
1759 is especially useful if you're doing many simultaneous connections against the
1760 same server and they all have this option enabled, as then CWD may first fail
1761 but then another connection does MKD before this connection and thus MKD fails
1762 but trying CWD works! 7.19.4 also introduced the \fICURLFTP_CREATE_DIR\fP and
1763 \fICURLFTP_CREATE_DIR_RETRY\fP enum names for these arguments.
1764
1765 Before version 7.19.4, libcurl will simply ignore arguments set to 2 and act
1766 as if 1 was selected.
1767 .IP CURLOPT_FTP_RESPONSE_TIMEOUT
1768 Pass a long.  Causes curl to set a timeout period (in seconds) on the amount
1769 of time that the server is allowed to take in order to generate a response
1770 message for a command before the session is considered hung.  While curl is
1771 waiting for a response, this value overrides \fICURLOPT_TIMEOUT\fP. It is
1772 recommended that if used in conjunction with \fICURLOPT_TIMEOUT\fP, you set
1773 \fICURLOPT_FTP_RESPONSE_TIMEOUT\fP to a value smaller than
1774 \fICURLOPT_TIMEOUT\fP.  (Added in 7.10.8)
1775 .IP CURLOPT_FTP_ALTERNATIVE_TO_USER
1776 Pass a char * as parameter, pointing to a string which will be used to
1777 authenticate if the usual FTP "USER user" and "PASS password" negotiation
1778 fails. This is currently only known to be required when connecting to
1779 Tumbleweed's Secure Transport FTPS server using client certificates for
1780 authentication. (Added in 7.15.5)
1781 .IP CURLOPT_FTP_SKIP_PASV_IP
1782 Pass a long. If set to 1, it instructs libcurl to not use the IP address the
1783 server suggests in its 227-response to libcurl's PASV command when libcurl
1784 connects the data connection. Instead libcurl will re-use the same IP address
1785 it already uses for the control connection. But it will use the port number
1786 from the 227-response. (Added in 7.14.2)
1787
1788 This option has no effect if PORT, EPRT or EPSV is used instead of PASV.
1789 .IP CURLOPT_FTPSSLAUTH
1790 Pass a long using one of the values from below, to alter how libcurl issues
1791 \&"AUTH TLS" or "AUTH SSL" when FTP over SSL is activated (see
1792 \fICURLOPT_USE_SSL\fP). (Added in 7.12.2)
1793 .RS
1794 .IP CURLFTPAUTH_DEFAULT
1795 Allow libcurl to decide.
1796 .IP CURLFTPAUTH_SSL
1797 Try "AUTH SSL" first, and only if that fails try "AUTH TLS".
1798 .IP CURLFTPAUTH_TLS
1799 Try "AUTH TLS" first, and only if that fails try "AUTH SSL".
1800 .RE
1801 .IP CURLOPT_FTP_SSL_CCC
1802 If enabled, this option makes libcurl use CCC (Clear Command Channel). It
1803 shuts down the SSL/TLS layer after authenticating. The rest of the
1804 control channel communication will be unencrypted. This allows NAT routers
1805 to follow the FTP transaction. Pass a long using one of the values below.
1806 (Added in 7.16.1)
1807 .RS
1808 .IP CURLFTPSSL_CCC_NONE
1809 Don't attempt to use CCC.
1810 .IP CURLFTPSSL_CCC_PASSIVE
1811 Do not initiate the shutdown, but wait for the server to do it. Do not send
1812 a reply.
1813 .IP CURLFTPSSL_CCC_ACTIVE
1814 Initiate the shutdown and wait for a reply.
1815 .RE
1816 .IP CURLOPT_FTP_ACCOUNT
1817 Pass a pointer to a zero terminated string (or NULL to disable). When an FTP
1818 server asks for "account data" after user name and password has been provided,
1819 this data is sent off using the ACCT command. (Added in 7.13.0)
1820 .IP CURLOPT_FTP_FILEMETHOD
1821 Pass a long that should have one of the following values. This option controls
1822 what method libcurl should use to reach a file on a FTP(S) server. The
1823 argument should be one of the following alternatives:
1824 .RS
1825 .IP CURLFTPMETHOD_MULTICWD
1826 libcurl does a single CWD operation for each path part in the given URL. For
1827 deep hierarchies this means many commands. This is how RFC1738 says it
1828 should be done. This is the default but the slowest behavior.
1829 .IP CURLFTPMETHOD_NOCWD
1830 libcurl does no CWD at all. libcurl will do SIZE, RETR, STOR etc and give a
1831 full path to the server for all these commands. This is the fastest behavior.
1832 .IP CURLFTPMETHOD_SINGLECWD
1833 libcurl does one CWD with the full target directory and then operates on the
1834 file \&"normally" (like in the multicwd case). This is somewhat more standards
1835 compliant than 'nocwd' but without the full penalty of 'multicwd'.
1836 .RE
1837 (Added in 7.15.1)
1838 .SH RTSP OPTIONS
1839 .IP CURLOPT_RTSP_REQUEST
1840 Tell libcurl what kind of RTSP request to make. Pass one of the following RTSP
1841 enum values. Unless noted otherwise, commands require the Session ID to be
1842 initialized. (Added in 7.20.0)
1843 .RS
1844 .IP CURL_RTSPREQ_OPTIONS
1845 Used to retrieve the available methods of the server. The application is
1846 responsible for parsing and obeying the response. \fB(The session ID is not
1847 needed for this method.)\fP  (Added in 7.20.0)
1848 .IP CURL_RTSPREQ_DESCRIBE
1849 Used to get the low level description of a stream. The application should note
1850 what formats it understands in the \fI'Accept:'\fP header. Unless set
1851 manually, libcurl will automatically fill in \fI'Accept:
1852 application/sdp'\fP. Time-condition headers will be added to Describe requests
1853 if the \fICURLOPT_TIMECONDITION\fP option is active. \fB(The session ID is not
1854 needed for this method)\fP  (Added in 7.20.0)
1855 .IP CURL_RTSPREQ_ANNOUNCE
1856 When sent by a client, this method changes the description of the session. For
1857 example, if a client is using the server to record a meeting, the client can
1858 use Announce to inform the server of all the meta-information about the
1859 session.  ANNOUNCE acts like a HTTP PUT or POST just like
1860 \fICURL_RTSPREQ_SET_PARAMETER\fP (Added in 7.20.0)
1861 .IP CURL_RTSPREQ_SETUP
1862 Setup is used to initialize the transport layer for the session. The
1863 application must set the desired Transport options for a session by using the
1864 \fICURLOPT_RTSP_TRANSPORT\fP option prior to calling setup. If no session ID
1865 is currently set with \fICURLOPT_RTSP_SESSION_ID\fP, libcurl will extract and
1866 use the session ID in the response to this request. \fB(The session ID is not
1867 needed for this method).\fP  (Added in 7.20.0)
1868 .IP CURL_RTSPREQ_PLAY
1869 Send a Play command to the server. Use the \fICURLOPT_RANGE\fP option to
1870 modify the playback time (e.g. 'npt=10-15').  (Added in 7.20.0)
1871 .IP CURL_RTSPREQ_PAUSE
1872 Send a Pause command to the server. Use the \fICURLOPT_RANGE\fP option with a
1873 single value to indicate when the stream should be halted. (e.g. npt='25')
1874 (Added in 7.20.0)
1875 .IP CURL_RTSPREQ_TEARDOWN
1876 This command terminates an RTSP session. Simply closing a connection does not
1877 terminate the RTSP session since it is valid to control an RTSP session over
1878 different connections.  (Added in 7.20.0)
1879 .IP CURL_RTSPREQ_GET_PARAMETER
1880 Retrieve a parameter from the server. By default, libcurl will automatically
1881 include a \fIContent-Type: text/parameters\fP header on all non-empty requests
1882 unless a custom one is set. GET_PARAMETER acts just like a HTTP PUT or POST
1883 (see \fICURL_RTSPREQ_SET_PARAMETER\fP).
1884 Applications wishing to send a heartbeat message (e.g. in the presence of a
1885 server-specified timeout) should send use an empty GET_PARAMETER request.
1886 (Added in 7.20.0)
1887 .IP CURL_RTSPREQ_SET_PARAMETER
1888 Set a parameter on the server. By default, libcurl will automatically include
1889 a \fIContent-Type: text/parameters\fP header unless a custom one is set. The
1890 interaction with SET_PARAMTER is much like a HTTP PUT or POST. An application
1891 may either use \fICURLOPT_UPLOAD\fP with \fICURLOPT_READDATA\fP like a HTTP
1892 PUT, or it may use \fICURLOPT_POSTFIELDS\fP like a HTTP POST. No chunked
1893 transfers are allowed, so the application must set the
1894 \fICURLOPT_INFILESIZE\fP in the former and \fICURLOPT_POSTFIELDSIZE\fP in the
1895 latter. Also, there is no use of multi-part POSTs within RTSP. (Added in
1896 7.20.0)
1897 .IP CURL_RTSPREQ_RECORD
1898 Used to tell the server to record a session. Use the \fICURLOPT_RANGE\fP
1899 option to modify the record time. (Added in 7.20.0)
1900 .IP CURL_RTSPREQ_RECEIVE
1901 This is a special request because it does not send any data to the server. The
1902 application may call this function in order to receive interleaved RTP
1903 data. It will return after processing one read buffer of data in order to give
1904 the application a chance to run. (Added in 7.20.0)
1905 .RE
1906 .IP CURLOPT_RTSP_SESSION_ID
1907 Pass a char * as a parameter to set the value of the current RTSP Session ID
1908 for the handle. Useful for resuming an in-progress session. Once this value is
1909 set to any non-NULL value, libcurl will return \fICURLE_RTSP_SESSION_ERROR\fP
1910 if ID received from the server does not match. If unset (or set to NULL),
1911 libcurl will automatically set the ID the first time the server sets it in a
1912 response. (Added in 7.20.0)
1913 .IP CURLOPT_RTSP_STREAM_URI
1914 Set the stream URI to operate on by passing a char * . For example, a single
1915 session may be controlling \fIrtsp://foo/twister/audio\fP and
1916 \fIrtsp://foo/twister/video\fP and the application can switch to the
1917 appropriate stream using this option. If unset, libcurl will default to
1918 operating on generic server options by passing '*' in the place of the RTSP
1919 Stream URI. This option is distinct from \fICURLOPT_URL\fP. When working with
1920 RTSP, the \fICURLOPT_STREAM_URI\fP indicates what URL to send to the server in
1921 the request header while the \fICURLOPT_URL\fP indicates where to make the
1922 connection to.  (e.g. the \fICURLOPT_URL\fP for the above examples might be
1923 set to \fIrtsp://foo/twister\fP (Added in 7.20.0)
1924 .IP CURLOPT_RTSP_TRANSPORT
1925 Pass a char * to tell libcurl what to pass for the Transport: header for this
1926 RTSP session. This is mainly a convenience method to avoid needing to set a
1927 custom Transport: header for every SETUP request. The application must set a
1928 Transport: header before issuing a SETUP request. (Added in 7.20.0)
1929 .IP CURLOPT_RTSP_HEADER
1930 This option is simply an alias for \fICURLOPT_HTTP_HEADER\fP. Use this to
1931 replace the standard headers that RTSP and HTTP share. It is also valid to use
1932 the shortcuts such as \fICURLOPT_USERAGENT\fP. (Added in 7.20.0)
1933 .IP CURLOPT_RTSP_CLIENT_CSEQ
1934 Manually set the the CSEQ number to issue for the next RTSP request. Useful if
1935 the application is resuming a previously broken connection. The CSEQ will
1936 increment from this new number henceforth. (Added in 7.20.0)
1937 .IP CURLOPT_RTSP_SERVER_CSEQ
1938 Manually set the CSEQ number to expect for the next RTSP Server->Client
1939 request.  At the moment, this feature (listening for Server requests) is
1940 unimplemented. (Added in 7.20.0)
1941 .SH PROTOCOL OPTIONS
1942 .IP CURLOPT_TRANSFERTEXT
1943 A parameter set to 1 tells the library to use ASCII mode for FTP transfers,
1944 instead of the default binary transfer. For win32 systems it does not set the
1945 stdout to binary mode. This option can be usable when transferring text data
1946 between systems with different views on certain characters, such as newlines
1947 or similar.
1948
1949 libcurl does not do a complete ASCII conversion when doing ASCII transfers
1950 over FTP. This is a known limitation/flaw that nobody has rectified. libcurl
1951 simply sets the mode to ASCII and performs a standard transfer.
1952 .IP CURLOPT_PROXY_TRANSFER_MODE
1953 Pass a long. If the value is set to 1 (one), it tells libcurl to set the
1954 transfer mode (binary or ASCII) for FTP transfers done via a HTTP proxy, by
1955 appending ;type=a or ;type=i to the URL. Without this setting, or it being set
1956 to 0 (zero, the default), \fICURLOPT_TRANSFERTEXT\fP has no effect when doing
1957 FTP via a proxy. Beware that not all proxies support this feature.  (Added in
1958 7.18.0)
1959 .IP CURLOPT_CRLF
1960 Pass a long. If the value is set to 1 (one), libcurl converts Unix newlines to
1961 CRLF newlines on transfers. Disable this option again by setting the value to
1962 0 (zero).
1963 .IP CURLOPT_RANGE
1964 Pass a char * as parameter, which should contain the specified range you
1965 want. It should be in the format "X-Y", where X or Y may be left out. HTTP
1966 transfers also support several intervals, separated with commas as in
1967 \fI"X-Y,N-M"\fP. Using this kind of multiple intervals will cause the HTTP
1968 server to send the response document in pieces (using standard MIME separation
1969 techniques). For RTSP, the formatting of a range should follow RFC2326
1970 Section 12.29. For RTSP, byte ranges are \fBnot\fP permitted. Instead, ranges
1971 should be given in npt, utc, or smpte formats.
1972
1973 Pass a NULL to this option to disable the use of ranges.
1974
1975 Ranges work on HTTP, FTP, FILE (since 7.18.0), and RTSP (since 7.20.0)
1976 transfers only.
1977 .IP CURLOPT_RESUME_FROM
1978 Pass a long as parameter. It contains the offset in number of bytes that you
1979 want the transfer to start from. Set this option to 0 to make the transfer
1980 start from the beginning (effectively disabling resume). For FTP, set this
1981 option to -1 to make the transfer start from the end of the target file
1982 (useful to continue an interrupted upload).
1983
1984 When doing uploads with FTP, the resume position is where in the local/source
1985 file libcurl should try to resume the upload from and it will then append the
1986 source file to the remote target file.
1987 .IP CURLOPT_RESUME_FROM_LARGE
1988 Pass a curl_off_t as parameter. It contains the offset in number of bytes that
1989 you want the transfer to start from. (Added in 7.11.0)
1990 .IP CURLOPT_CUSTOMREQUEST
1991 Pass a pointer to a zero terminated string as parameter.
1992
1993 When you change the request method by setting \fBCURLOPT_CUSTOMREQUEST\fP to
1994 something, you don't actually change how libcurl behaves or acts in regards
1995 to the particular request method, it will only change the actual string sent
1996 in the request.
1997
1998 Restore to the internal default by setting this to NULL.
1999
2000 This option can be used to specify the request:
2001
2002 .B HTTP
2003
2004 Instead of GET or HEAD when performing HTTP based requests. This is
2005 particularly useful, for example, for performing a HTTP DELETE request.
2006
2007 For example:
2008
2009 When you tell libcurl to do a HEAD request, but then specify a GET though a
2010 custom request libcurl will still act as if it sent a HEAD. To switch to a
2011 proper HEAD use \fICURLOPT_NOBODY\fP, to switch to a proper POST use
2012 \fICURLOPT_POST\fP or \fICURLOPT_POSTFIELDS\fP and to switch to a proper GET
2013 use CURLOPT_HTTPGET.
2014
2015 Please don't perform this at will, on HTTP based requests, by making sure
2016 your server supports the command you are sending first.
2017
2018 Many people have wrongly used this option to replace the entire request with
2019 their own, including multiple headers and POST contents. While that might
2020 work in many cases, it will cause libcurl to send invalid requests and it
2021 could possibly confuse the remote server badly. Use \fICURLOPT_POST\fP and
2022 \fICURLOPT_POSTFIELDS\fP to set POST data. Use \fICURLOPT_HTTPHEADER\fP to
2023 replace or extend the set of headers sent by libcurl. Use
2024 \fICURLOPT_HTTP_VERSION\fP to change HTTP version.
2025
2026 .B FTP
2027
2028 Instead of LIST and NLST when performing FTP directory listings.
2029
2030 .B IMAP
2031
2032 Instead of LIST when issuing IMAP based requests. (Added in 7.30.0)
2033
2034 .B POP3
2035
2036 Instead of LIST and RETR when issuing POP3 based requests. (Added in 7.26.0)
2037
2038 For example:
2039
2040 When you tell libcurl to use a custom request it will behave like a LIST or
2041 RETR command was sent where it expects data to be returned by the server. As
2042 such \fICURLOPT_NOBODY\fP should be used when specifying commands such as
2043 DELE and NOOP for example.
2044
2045 .B SMTP
2046
2047 Instead of a HELP or VRFY when issuing SMTP based requests. (Added in 7.34.0)
2048
2049 For example:
2050
2051 Normally a multiline response is returned which can be used, in conjuection with
2052 \fICURLOPT_MAIL_RCPT\fP, to specify an EXPN request. If the \fICURLOPT_NOBODY\fP
2053 option is specified then the request can be used to issue NOOP and RSET
2054 commands.
2055 .IP CURLOPT_FILETIME
2056 Pass a long. If it is 1, libcurl will attempt to get the modification date of
2057 the remote document in this operation. This requires that the remote server
2058 sends the time or replies to a time querying command. The
2059 \fIcurl_easy_getinfo(3)\fP function with the \fICURLINFO_FILETIME\fP argument
2060 can be used after a transfer to extract the received time (if any).
2061 .IP CURLOPT_NOBODY
2062 A parameter set to 1 tells the library to not include the body-part in the
2063 output. This is only relevant for protocols that have separate header and
2064 body parts. On HTTP(S) servers, this will make libcurl do a HEAD request.
2065
2066 To change request to GET, you should use \fICURLOPT_HTTPGET\fP. Change
2067 request to POST with \fICURLOPT_POST\fP etc.
2068 .IP CURLOPT_INFILESIZE
2069 When uploading a file to a remote site, this option should be used to tell
2070 libcurl what the expected size of the infile is. This value should be passed
2071 as a long. See also \fICURLOPT_INFILESIZE_LARGE\fP.
2072
2073 For uploading using SCP, this option or \fICURLOPT_INFILESIZE_LARGE\fP is
2074 mandatory.
2075
2076 To "unset" this value again, set it to -1.
2077
2078 When sending emails using SMTP, this command can be used to specify the
2079 optional SIZE parameter for the MAIL FROM command. (Added in 7.23.0)
2080
2081 This option does not limit how much data libcurl will actually send, as that
2082 is controlled entirely by what the read callback returns.
2083 .IP CURLOPT_INFILESIZE_LARGE
2084 When uploading a file to a remote site, this option should be used to tell
2085 libcurl what the expected size of the infile is.  This value should be passed
2086 as a curl_off_t. (Added in 7.11.0)
2087
2088 For uploading using SCP, this option or \fICURLOPT_INFILESIZE\fP is mandatory.
2089
2090 To "unset" this value again, set it to -1.
2091
2092 When sending emails using SMTP, this command can be used to specify the
2093 optional SIZE parameter for the MAIL FROM command. (Added in 7.23.0)
2094
2095 This option does not limit how much data libcurl will actually send, as that
2096 is controlled entirely by what the read callback returns.
2097 .IP CURLOPT_UPLOAD
2098 A parameter set to 1 tells the library to prepare for an upload. The
2099 \fICURLOPT_READDATA\fP and \fICURLOPT_INFILESIZE\fP or
2100 \fICURLOPT_INFILESIZE_LARGE\fP options are also interesting for uploads. If
2101 the protocol is HTTP, uploading means using the PUT request unless you tell
2102 libcurl otherwise.
2103
2104 Using PUT with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
2105 You can disable this header with \fICURLOPT_HTTPHEADER\fP as usual.
2106
2107 If you use PUT to a HTTP 1.1 server, you can upload data without knowing the
2108 size before starting the transfer if you use chunked encoding. You enable this
2109 by adding a header like "Transfer-Encoding: chunked" with
2110 \fICURLOPT_HTTPHEADER\fP. With HTTP 1.0 or without chunked transfer, you must
2111 specify the size.
2112 .IP CURLOPT_MAXFILESIZE
2113 Pass a long as parameter. This allows you to specify the maximum size (in
2114 bytes) of a file to download. If the file requested is larger than this value,
2115 the transfer will not start and CURLE_FILESIZE_EXCEEDED will be returned.
2116
2117 The file size is not always known prior to download, and for such files this
2118 option has no effect even if the file transfer ends up being larger than this
2119 given limit. This concerns both FTP and HTTP transfers.
2120 .IP CURLOPT_MAXFILESIZE_LARGE
2121 Pass a curl_off_t as parameter. This allows you to specify the maximum size
2122 (in bytes) of a file to download. If the file requested is larger than this
2123 value, the transfer will not start and \fICURLE_FILESIZE_EXCEEDED\fP will be
2124 returned. (Added in 7.11.0)
2125
2126 The file size is not always known prior to download, and for such files this
2127 option has no effect even if the file transfer ends up being larger than this
2128 given limit. This concerns both FTP and HTTP transfers.
2129 .IP CURLOPT_TIMECONDITION
2130 Pass a long as parameter. This defines how the \fICURLOPT_TIMEVALUE\fP time
2131 value is treated. You can set this parameter to \fICURL_TIMECOND_IFMODSINCE\fP
2132 or \fICURL_TIMECOND_IFUNMODSINCE\fP. This feature applies to HTTP, FTP, RTSP,
2133 and FILE.
2134
2135 The last modification time of a file is not always known and in such instances
2136 this feature will have no effect even if the given time condition would not
2137 have been met. \fIcurl_easy_getinfo(3)\fP with the
2138 \fICURLINFO_CONDITION_UNMET\fP option can be used after a transfer to learn if
2139 a zero-byte successful "transfer" was due to this condition not matching.
2140 .IP CURLOPT_TIMEVALUE
2141 Pass a long as parameter. This should be the time in seconds since 1 Jan 1970,
2142 and the time will be used in a condition as specified with
2143 \fICURLOPT_TIMECONDITION\fP.
2144 .SH CONNECTION OPTIONS
2145 .IP CURLOPT_TIMEOUT
2146 Pass a long as parameter containing the maximum time in seconds that you allow
2147 the libcurl transfer operation to take. Normally, name lookups can take a
2148 considerable time and limiting operations to less than a few minutes risk
2149 aborting perfectly normal operations. This option will cause curl to use the
2150 SIGALRM to enable time-outing system calls.
2151
2152 In unix-like systems, this might cause signals to be used unless
2153 \fICURLOPT_NOSIGNAL\fP is set.
2154
2155 Default timeout is 0 (zero) which means it never times out.
2156 .IP CURLOPT_TIMEOUT_MS
2157 An alternative to \fICURLOPT_TIMEOUT\fP but takes number of milliseconds
2158 instead. If libcurl is built to use the standard system name resolver, that
2159 portion of the transfer will still use full-second resolution for timeouts
2160 with a minimum timeout allowed of one second.
2161
2162 If both \fICURLOPT_TIMEOUT\fP and \fICURLOPT_TIMEOUT_MS\fP are set, the value
2163 set last will be used.
2164
2165 (Added in 7.16.2)
2166 .IP CURLOPT_LOW_SPEED_LIMIT
2167 Pass a long as parameter. It contains the transfer speed in bytes per second
2168 that the transfer should be below during \fICURLOPT_LOW_SPEED_TIME\fP seconds
2169 for the library to consider it too slow and abort.
2170 .IP CURLOPT_LOW_SPEED_TIME
2171 Pass a long as parameter. It contains the time in seconds that the transfer
2172 should be below the \fICURLOPT_LOW_SPEED_LIMIT\fP for the library to consider
2173 it too slow and abort.
2174 .IP CURLOPT_MAX_SEND_SPEED_LARGE
2175 Pass a curl_off_t as parameter.  If an upload exceeds this speed (counted in
2176 bytes per second) on cumulative average during the transfer, the transfer will
2177 pause to keep the average rate less than or equal to the parameter value.
2178 Defaults to unlimited speed.
2179
2180 This option doesn't affect transfer speeds done with FILE:// URLs. (Added in
2181  7.15.5)
2182 .IP CURLOPT_MAX_RECV_SPEED_LARGE
2183 Pass a curl_off_t as parameter.  If a download exceeds this speed (counted in
2184 bytes per second) on cumulative average during the transfer, the transfer will
2185 pause to keep the average rate less than or equal to the parameter
2186 value. Defaults to unlimited speed.
2187
2188 This option doesn't affect transfer speeds done with FILE:// URLs. (Added in
2189 7.15.5)
2190 .IP CURLOPT_MAXCONNECTS
2191 Pass a long. The set number will be the persistent connection cache size. The
2192 set amount will be the maximum amount of simultaneously open connections that
2193 libcurl may cache in this easy handle. Default is 5, and there isn't much
2194 point in changing this value unless you are perfectly aware of how this works
2195 and changes libcurl's behaviour. This concerns connections using any of the
2196 protocols that support persistent connections.
2197
2198 When reaching the maximum limit, curl closes the oldest one in the cache to
2199 prevent increasing the number of open connections.
2200
2201 If you already have performed transfers with this curl handle, setting a
2202 smaller MAXCONNECTS than before may cause open connections to get closed
2203 unnecessarily.
2204
2205 If you add this easy handle to a multi handle, this setting is not
2206 acknowledged, and you must instead use \fIcurl_multi_setopt(3)\fP and the
2207 \fICURLMOPT_MAXCONNECTS\fP option.
2208 .IP CURLOPT_CLOSEPOLICY
2209 (Obsolete) This option does nothing.
2210 .IP CURLOPT_FRESH_CONNECT
2211 Pass a long. Set to 1 to make the next transfer use a new (fresh) connection
2212 by force. If the connection cache is full before this connection, one of the
2213 existing connections will be closed as according to the selected or default
2214 policy. This option should be used with caution and only if you understand
2215 what it does. Set this to 0 to have libcurl attempt re-using an existing
2216 connection (default behavior).
2217 .IP CURLOPT_FORBID_REUSE
2218 Pass a long. Set to 1 to make the next transfer explicitly close the
2219 connection when done. Normally, libcurl keeps all connections alive when done
2220 with one transfer in case a succeeding one follows that can re-use them.
2221 This option should be used with caution and only if you understand what it
2222 does. Set to 0 to have libcurl keep the connection open for possible later
2223 re-use (default behavior).
2224 .IP CURLOPT_CONNECTTIMEOUT
2225 Pass a long. It should contain the maximum time in seconds that you allow the
2226 connection to the server to take.  This only limits the connection phase, once
2227 it has connected, this option is of no more use. Set to zero to switch to the
2228 default built-in connection timeout - 300 seconds. See also the
2229 \fICURLOPT_TIMEOUT\fP option.
2230
2231 In unix-like systems, this might cause signals to be used unless
2232 \fICURLOPT_NOSIGNAL\fP is set.
2233 .IP CURLOPT_CONNECTTIMEOUT_MS
2234 Like \fICURLOPT_CONNECTTIMEOUT\fP but takes the number of milliseconds
2235 instead. If libcurl is built to use the standard system name resolver,
2236 that portion of the connect will still use full-second resolution for
2237 timeouts with a minimum timeout allowed of one second.
2238 (Added in 7.16.2)
2239 .IP CURLOPT_IPRESOLVE
2240 Allows an application to select what kind of IP addresses to use when
2241 resolving host names. This is only interesting when using host names that
2242 resolve addresses using more than one version of IP. The allowed values are:
2243 .RS
2244 .IP CURL_IPRESOLVE_WHATEVER
2245 Default, resolves addresses to all IP versions that your system allows.
2246 .IP CURL_IPRESOLVE_V4
2247 Resolve to IPv4 addresses.
2248 .IP CURL_IPRESOLVE_V6
2249 Resolve to IPv6 addresses.
2250 .RE
2251 .IP CURLOPT_CONNECT_ONLY
2252 Pass a long. If the parameter equals 1, it tells the library to perform all
2253 the required proxy authentication and connection setup, but no data transfer.
2254 This option is implemented for HTTP, SMTP and POP3.
2255
2256 The option can be used to simply test a connection to a server, but is more
2257 useful when used with the \fICURLINFO_LASTSOCKET\fP option to
2258 \fIcurl_easy_getinfo(3)\fP as the library can set up the connection and then
2259 the application can obtain the most recently used socket for special data
2260 transfers. (Added in 7.15.2)
2261 .IP CURLOPT_USE_SSL
2262 Pass a long using one of the values from below, to make libcurl use your
2263 desired level of SSL for the transfer. (Added in 7.11.0)
2264
2265 This is for enabling SSL/TLS when you use FTP, SMTP, POP3, IMAP etc.
2266
2267 (This option was known as CURLOPT_FTP_SSL up to 7.16.4, and the constants
2268 were known as CURLFTPSSL_*)
2269 .RS
2270 .IP CURLUSESSL_NONE
2271 Don't attempt to use SSL.
2272 .IP CURLUSESSL_TRY
2273 Try using SSL, proceed as normal otherwise.
2274 .IP CURLUSESSL_CONTROL
2275 Require SSL for the control connection or fail with \fICURLE_USE_SSL_FAILED\fP.
2276 .IP CURLUSESSL_ALL
2277 Require SSL for all communication or fail with \fICURLE_USE_SSL_FAILED\fP.
2278 .RE
2279 .IP CURLOPT_RESOLVE
2280 Pass a pointer to a linked list of strings with host name resolve information
2281 to use for requests with this handle. The linked list should be a fully valid
2282 list of \fBstruct curl_slist\fP structs properly filled in. Use
2283 \fIcurl_slist_append(3)\fP to create the list and \fIcurl_slist_free_all(3)\fP
2284 to clean up an entire list.
2285
2286 Each single name resolve string should be written using the format
2287 HOST:PORT:ADDRESS where HOST is the name libcurl will try to resolve, PORT is
2288 the port number of the service where libcurl wants to connect to the HOST and
2289 ADDRESS is the numerical IP address. If libcurl is built to support IPv6,
2290 ADDRESS can of course be either IPv4 or IPv6 style addressing.
2291
2292 This option effectively pre-populates the DNS cache with entries for the
2293 host+port pair so redirects and everything that operations against the
2294 HOST+PORT will instead use your provided ADDRESS. Addresses to set with
2295 \fICURL_RESOLVE\fP will not time-out from the DNS cache like ordindary
2296 entries.
2297
2298 You can remove names from the DNS cache again, to stop providing these fake
2299 resolves, by including a string in the linked list that uses the format
2300 \&"-HOST:PORT". The host name must be prefixed with a dash, and the host name
2301 and port number must exactly match what was already added previously.
2302
2303 (Added in 7.21.3)
2304 .IP CURLOPT_DNS_SERVERS
2305 Set the list of DNS servers to be used instead of the system default.
2306 The format of the dns servers option is:
2307
2308 host[:port][,host[:port]]...
2309
2310 For example:
2311
2312 192.168.1.100,192.168.1.101,3.4.5.6
2313
2314 This option requires that libcurl was built with a resolver backend that
2315 supports this operation. The c-ares backend is the only such one.
2316
2317 (Added in 7.24.0)
2318 .IP CURLOPT_DNS_INTERFACE
2319 Pass a char * as parameter. Set the name of the network interface that
2320 the DNS resolver should bind to. This must be an interface name (not an
2321 address). Set this option to NULL to use the default setting (don't
2322 bind to a specific interface).
2323
2324 This option requires that libcurl was built with a resolver backend that
2325 supports this operation. The c-ares backend is the only such one.
2326
2327 (Added in 7.33.0)
2328 .IP CURLOPT_DNS_LOCAL_IP4
2329 Set the local IPv4 address that the resolver should bind to. The argument
2330 should be of type char * and contain a single IPv4 address as a string.
2331 Set this option to NULL to use the default setting (don't
2332 bind to a specific IP address).
2333
2334 This option requires that libcurl was built with a resolver backend that
2335 supports this operation. The c-ares backend is the only such one.
2336
2337 (Added in 7.33.0)
2338 .IP CURLOPT_DNS_LOCAL_IP6
2339 Set the local IPv6 address that the resolver should bind to. The argument
2340 should be of type char * and contain a single IPv6 address as a string.
2341 Set this option to NULL to use the default setting (don't
2342 bind to a specific IP address).
2343
2344 This option requires that libcurl was built with a resolver backend that
2345 supports this operation. The c-ares backend is the only such one.
2346
2347 (Added in 7.33.0)
2348 .IP CURLOPT_ACCEPTTIMEOUT_MS
2349 Pass a long telling libcurl the maximum number of milliseconds to wait for a
2350 server to connect back to libcurl when an active FTP connection is used. If no
2351 timeout is set, the internal default of 60000 will be used. (Added in 7.24.0)
2352 .SH SSL and SECURITY OPTIONS
2353 .IP CURLOPT_SSLCERT
2354 Pass a pointer to a zero terminated string as parameter. The string should be
2355 the file name of your certificate. The default format is "P12" on Secure
2356 Transport and "PEM" on other engines, and can be changed with
2357 \fICURLOPT_SSLCERTTYPE\fP.
2358
2359 With NSS or Secure Transport, this can also be the nickname of the certificate
2360 you wish to authenticate with as it is named in the security database. If you
2361 want to use a file from the current directory, please precede it with "./"
2362 prefix, in order to avoid confusion with a nickname.
2363 .IP CURLOPT_SSLCERTTYPE
2364 Pass a pointer to a zero terminated string as parameter. The string should be
2365 the format of your certificate. Supported formats are "PEM" and "DER", except
2366 with Secure Transport. OpenSSL (versions 0.9.3 and later) and Secure Transport
2367 (on iOS 5 or later, or OS X 10.7 or later) also support "P12" for
2368 PKCS#12-encoded files. (Added in 7.9.3)
2369 .IP CURLOPT_SSLKEY
2370 Pass a pointer to a zero terminated string as parameter. The string should be
2371 the file name of your private key. The default format is "PEM" and can be
2372 changed with \fICURLOPT_SSLKEYTYPE\fP.
2373
2374 (iOS and Mac OS X only) This option is ignored if curl was built against Secure
2375 Transport. Secure Transport expects the private key to be already present in
2376 the keychain or PKCS#12 file containing the certificate.
2377 .IP CURLOPT_SSLKEYTYPE
2378 Pass a pointer to a zero terminated string as parameter. The string should be
2379 the format of your private key. Supported formats are "PEM", "DER" and "ENG".
2380
2381 The format "ENG" enables you to load the private key from a crypto engine. In
2382 this case \fICURLOPT_SSLKEY\fP is used as an identifier passed to the
2383 engine. You have to set the crypto engine with \fICURLOPT_SSLENGINE\fP.
2384 \&"DER" format key file currently does not work because of a bug in OpenSSL.
2385 .IP CURLOPT_KEYPASSWD
2386 Pass a pointer to a zero terminated string as parameter. It will be used as
2387 the password required to use the \fICURLOPT_SSLKEY\fP or
2388 \fICURLOPT_SSH_PRIVATE_KEYFILE\fP private key.
2389 You never needed a pass phrase to load a certificate but you need one to
2390 load your private key.
2391
2392 (This option was known as CURLOPT_SSLKEYPASSWD up to 7.16.4 and
2393 CURLOPT_SSLCERTPASSWD up to 7.9.2)
2394 .IP CURLOPT_SSL_ENABLE_ALPN
2395 Pass a long as parameter, 0 or 1 where 1 is for enable and 0 for disable. By
2396 default, libcurl assumes a value of 1. This option enables/disables ALPN in
2397 the SSL handshake (if the SSL backend libcurl is built to use supports it),
2398 which can be used to negotiate http2.
2399
2400 (Added in 7.36.0)
2401 .IP CURLOPT_SSL_ENABLE_NPN
2402 Pass a long as parameter, 0 or 1 where 1 is for enable and 0 for disable. By
2403 default, libcurl assumes a value of 1. This option enables/disables NPN in the
2404 SSL handshake (if the SSL backend libcurl is built to use supports it), which
2405 can be used to negotiate http2.
2406
2407 (Added in 7.36.0)
2408 .IP CURLOPT_SSLENGINE
2409 Pass a pointer to a zero terminated string as parameter. It will be used as
2410 the identifier for the crypto engine you want to use for your private
2411 key.
2412
2413 If the crypto device cannot be loaded, \fICURLE_SSL_ENGINE_NOTFOUND\fP is
2414 returned.
2415 .IP CURLOPT_SSLENGINE_DEFAULT
2416 Sets the actual crypto engine as the default for (asymmetric) crypto
2417 operations.
2418
2419 If the crypto device cannot be set, \fICURLE_SSL_ENGINE_SETFAILED\fP is
2420 returned.
2421
2422 Even though this option doesn't need any parameter, in some configurations
2423 \fIcurl_easy_setopt\fP might be defined as a macro taking exactly three
2424 arguments. Therefore, it's recommended to pass 1 as parameter to this option.
2425 .IP CURLOPT_SSLVERSION
2426 Pass a long as parameter to control what version of SSL/TLS to attempt to use.
2427 (Added in 7.9.2)
2428
2429 The available options are:
2430 .RS
2431 .IP CURL_SSLVERSION_DEFAULT
2432 The default action. This will attempt to figure out the remote SSL protocol
2433 version, i.e. either SSLv3 or TLSv1 (but not SSLv2, which became disabled
2434 by default with 7.18.1).
2435 .IP CURL_SSLVERSION_TLSv1
2436 Force TLSv1.x
2437 .IP CURL_SSLVERSION_SSLv2
2438 Force SSLv2
2439 .IP CURL_SSLVERSION_SSLv3
2440 Force SSLv3
2441 .IP CURL_SSLVERSION_TLSv1_0
2442 Force TLSv1.0 (Added in 7.34.0)
2443 .IP CURL_SSLVERSION_TLSv1_1
2444 Force TLSv1.1 (Added in 7.34.0)
2445 .IP CURL_SSLVERSION_TLSv1_2
2446 Force TLSv1.2 (Added in 7.34.0)
2447 .RE
2448 .IP CURLOPT_SSL_VERIFYPEER
2449 Pass a long as parameter. By default, curl assumes a value of 1.
2450
2451 This option determines whether curl verifies the authenticity of the peer's
2452 certificate. A value of 1 means curl verifies; 0 (zero) means it doesn't.
2453
2454 When negotiating a SSL connection, the server sends a certificate indicating
2455 its identity.  Curl verifies whether the certificate is authentic, i.e. that
2456 you can trust that the server is who the certificate says it is.  This trust
2457 is based on a chain of digital signatures, rooted in certification authority
2458 (CA) certificates you supply.  curl uses a default bundle of CA certificates
2459 (the path for that is determined at build time) and you can specify alternate
2460 certificates with the \fICURLOPT_CAINFO\fP option or the \fICURLOPT_CAPATH\fP
2461 option.
2462
2463 When \fICURLOPT_SSL_VERIFYPEER\fP is nonzero, and the verification fails to
2464 prove that the certificate is authentic, the connection fails.  When the
2465 option is zero, the peer certificate verification succeeds regardless.
2466
2467 Authenticating the certificate is not by itself very useful.  You typically
2468 want to ensure that the server, as authentically identified by its
2469 certificate, is the server you mean to be talking to.  Use
2470 \fICURLOPT_SSL_VERIFYHOST\fP to control that. The check that the host name in
2471 the certificate is valid for the host name you're connecting to is done
2472 independently of the \fICURLOPT_SSL_VERIFYPEER\fP option.
2473 .IP CURLOPT_CAINFO
2474 Pass a char * to a zero terminated string naming a file holding one or more
2475 certificates to verify the peer with.  This makes sense only when used in
2476 combination with the \fICURLOPT_SSL_VERIFYPEER\fP option.  If
2477 \fICURLOPT_SSL_VERIFYPEER\fP is zero, \fICURLOPT_CAINFO\fP need not
2478 even indicate an accessible file.
2479
2480 This option is by default set to the system path where libcurl's cacert bundle
2481 is assumed to be stored, as established at build time.
2482
2483 If curl is built against the NSS SSL library, the NSS PEM PKCS#11 module
2484 (libnsspem.so) needs to be available for this option to work properly.
2485 .IP CURLOPT_ISSUERCERT
2486 Pass a char * to a zero terminated string naming a file holding a CA
2487 certificate in PEM format. If the option is set, an additional check against
2488 the peer certificate is performed to verify the issuer is indeed the one
2489 associated with the certificate provided by the option. This additional check
2490 is useful in multi-level PKI where one needs to enforce that the peer
2491 certificate is from a specific branch of the tree.
2492
2493 This option makes sense only when used in combination with the
2494 \fICURLOPT_SSL_VERIFYPEER\fP option. Otherwise, the result of the check is not
2495 considered as failure.
2496
2497 A specific error code (CURLE_SSL_ISSUER_ERROR) is defined with the option,
2498 which is returned if the setup of the SSL/TLS session has failed due to a
2499 mismatch with the issuer of peer certificate (\fICURLOPT_SSL_VERIFYPEER\fP has
2500 to be set too for the check to fail). (Added in 7.19.0)
2501 .IP CURLOPT_CAPATH
2502 Pass a char * to a zero terminated string naming a directory holding multiple
2503 CA certificates to verify the peer with. If libcurl is built against OpenSSL,
2504 the certificate directory must be prepared using the openssl c_rehash utility.
2505 This makes sense only when used in combination with the
2506 \fICURLOPT_SSL_VERIFYPEER\fP option.  If \fICURLOPT_SSL_VERIFYPEER\fP is zero,
2507 \fICURLOPT_CAPATH\fP need not even indicate an accessible path.  The
2508 \fICURLOPT_CAPATH\fP function apparently does not work in Windows due to some
2509 limitation in openssl. This option is OpenSSL-specific and does nothing if
2510 libcurl is built to use GnuTLS. NSS-powered libcurl provides the option only
2511 for backward compatibility.
2512 .IP CURLOPT_CRLFILE
2513 Pass a char * to a zero terminated string naming a file with the concatenation
2514 of CRL (in PEM format) to use in the certificate validation that occurs during
2515 the SSL exchange.
2516
2517 When curl is built to use NSS or GnuTLS, there is no way to influence the use
2518 of CRL passed to help in the verification process. When libcurl is built with
2519 OpenSSL support, X509_V_FLAG_CRL_CHECK and X509_V_FLAG_CRL_CHECK_ALL are both
2520 set, requiring CRL check against all the elements of the certificate chain if
2521 a CRL file is passed.
2522
2523 This option makes sense only when used in combination with the
2524 \fICURLOPT_SSL_VERIFYPEER\fP option.
2525
2526 A specific error code (CURLE_SSL_CRL_BADFILE) is defined with the option. It
2527 is returned when the SSL exchange fails because the CRL file cannot be loaded.
2528 A failure in certificate verification due to a revocation information found in
2529 the CRL does not trigger this specific error. (Added in 7.19.0)
2530 .IP CURLOPT_SSL_VERIFYHOST
2531 Pass a long as parameter.
2532
2533 This option determines whether libcurl verifies that the server cert is for
2534 the server it is known as.
2535
2536 When negotiating a SSL connection, the server sends a certificate indicating
2537 its identity.
2538
2539 When \fICURLOPT_SSL_VERIFYHOST\fP is 2, that certificate must indicate that
2540 the server is the server to which you meant to connect, or the connection
2541 fails.
2542
2543 Curl considers the server the intended one when the Common Name field or a
2544 Subject Alternate Name field in the certificate matches the host name in the
2545 URL to which you told Curl to connect.
2546
2547 When the value is 1, \fIcurl_easy_setopt\fP will return an error and the option
2548 value will not be changed.  It was previously (in 7.28.0 and earlier) a debug
2549 option of some sorts, but it is no longer supported due to frequently leading
2550 to programmer mistakes.
2551
2552 When the value is 0, the connection succeeds regardless of the names in the
2553 certificate.
2554
2555 The default value for this option is 2.
2556
2557 This option controls checking the server's certificate's claimed identity.
2558 The server could be lying.  To control lying, see
2559 \fICURLOPT_SSL_VERIFYPEER\fP.  If libcurl is built against NSS and
2560 \fICURLOPT_SSL_VERIFYPEER\fP is zero, \fICURLOPT_SSL_VERIFYHOST\fP is also set
2561 to zero and cannot be overridden.
2562 .IP CURLOPT_CERTINFO
2563 Pass a long set to 1 to enable libcurl's certificate chain info gatherer. With
2564 this enabled, libcurl (if built with OpenSSL, NSS, GSKit or QsoSSL) will
2565 extract lots of information
2566 and data about the certificates in the certificate chain used in the SSL
2567 connection. This data may then be retrieved after a transfer using
2568 \fIcurl_easy_getinfo(3)\fP and its option \fICURLINFO_CERTINFO\fP. (Added in
2569 7.19.1)
2570 .IP CURLOPT_RANDOM_FILE
2571 Pass a char * to a zero terminated file name. The file will be used to read
2572 from to seed the random engine for SSL. The more random the specified file is,
2573 the more secure the SSL connection will become.
2574 .IP CURLOPT_EGDSOCKET
2575 Pass a char * to the zero terminated path name to the Entropy Gathering Daemon
2576 socket. It will be used to seed the random engine for SSL.
2577 .IP CURLOPT_SSL_CIPHER_LIST
2578 Pass a char *, pointing to a zero terminated string holding the list of
2579 ciphers to use for the SSL connection. The list must be syntactically correct,
2580 it consists of one or more cipher strings separated by colons. Commas or
2581 spaces are also acceptable separators but colons are normally used, \&!, \&-
2582 and \&+ can be used as operators.
2583
2584 For OpenSSL and GnuTLS valid examples of cipher lists include 'RC4-SHA',
2585 \'SHA1+DES\', 'TLSv1' and 'DEFAULT'. The default list is normally set when you
2586 compile OpenSSL.
2587
2588 You'll find more details about cipher lists on this URL:
2589 \fIhttp://www.openssl.org/docs/apps/ciphers.html\fP
2590
2591 For NSS, valid examples of cipher lists include 'rsa_rc4_128_md5',
2592 \'rsa_aes_128_sha\', etc. With NSS you don't add/remove ciphers. If one uses
2593 this option then all known ciphers are disabled and only those passed in
2594 are enabled.
2595
2596 You'll find more details about the NSS cipher lists on this URL:
2597 \fIhttp://git.fedorahosted.org/cgit/mod_nss.git/plain/docs/mod_nss.html#Directives\fP
2598
2599 .IP CURLOPT_SSL_SESSIONID_CACHE
2600 Pass a long set to 0 to disable libcurl's use of SSL session-ID caching. Set
2601 this to 1 to enable it. By default all transfers are done using the
2602 cache. While nothing ever should get hurt by attempting to reuse SSL
2603 session-IDs, there seem to be broken SSL implementations in the wild that may
2604 require you to disable this in order for you to succeed. (Added in 7.16.0)
2605 .IP CURLOPT_SSL_OPTIONS
2606 Pass a long with a bitmask to tell libcurl about specific SSL behaviors.
2607
2608 CURLSSLOPT_ALLOW_BEAST is the only supported bit and by setting this the user
2609 will tell libcurl to not attempt to use any workarounds for a security flaw
2610 in the SSL3 and TLS1.0 protocols.  If this option isn't used or this bit is
2611 set to 0, the SSL layer libcurl uses may use a work-around for this flaw
2612 although it might cause interoperability problems with some (older) SSL
2613 implementations. WARNING: avoiding this work-around loosens the security, and
2614 by setting this option to 1 you ask for exactly that. (Added in 7.25.0)
2615 .IP CURLOPT_KRBLEVEL
2616 Pass a char * as parameter. Set the kerberos security level for FTP; this also
2617 enables kerberos awareness.  This is a string, \&'clear', \&'safe',
2618 \&'confidential' or \&'private'.  If the string is set but doesn't match one
2619 of these, 'private' will be used. Set the string to NULL to disable kerberos
2620 support for FTP.
2621
2622 (This option was known as CURLOPT_KRB4LEVEL up to 7.16.3)
2623 .IP CURLOPT_GSSAPI_DELEGATION
2624 Set the parameter to CURLGSSAPI_DELEGATION_FLAG to allow unconditional GSSAPI
2625 credential delegation.  The delegation is disabled by default since 7.21.7.
2626 Set the parameter to CURLGSSAPI_DELEGATION_POLICY_FLAG to delegate only if
2627 the OK-AS-DELEGATE flag is set in the service ticket in case this feature is
2628 supported by the GSSAPI implementation and the definition of
2629 GSS_C_DELEG_POLICY_FLAG was available at compile-time.
2630 (Added in 7.22.0)
2631 .SH SSH OPTIONS
2632 .IP CURLOPT_SSH_AUTH_TYPES
2633 Pass a long set to a bitmask consisting of one or more of
2634 CURLSSH_AUTH_PUBLICKEY, CURLSSH_AUTH_PASSWORD, CURLSSH_AUTH_HOST,
2635 CURLSSH_AUTH_KEYBOARD and CURLSSH_AUTH_AGENT. Set CURLSSH_AUTH_ANY to let
2636 libcurl pick a suitable one. Currently CURLSSH_AUTH_HOST has no effect. (Added
2637 in 7.16.1) If CURLSSH_AUTH_AGENT is used, libcurl attempts to connect to
2638 ssh-agent or pageant and let the agent attempt the authentication. (Added in
2639 7.28.0)
2640 .IP CURLOPT_SSH_HOST_PUBLIC_KEY_MD5
2641 Pass a char * pointing to a string containing 32 hexadecimal digits. The
2642 string should be the 128 bit MD5 checksum of the remote host's public key, and
2643 libcurl will reject the connection to the host unless the md5sums match. This
2644 option is only for SCP and SFTP transfers. (Added in 7.17.1)
2645 .IP CURLOPT_SSH_PUBLIC_KEYFILE
2646 Pass a char * pointing to a file name for your public key. If not used,
2647 libcurl defaults to \fB$HOME/.ssh/id_dsa.pub\fP if the HOME environment
2648 variable is set, and just "id_dsa.pub" in the current directory if HOME is not
2649 set.  (Added in 7.16.1)
2650 If an empty string is passed, libcurl will pass no public key to libssh2
2651 which then tries to compute it from the private key, this is known to work
2652 when libssh2 1.4.0+ is linked against OpenSSL. (Added in 7.26.0)
2653 .IP CURLOPT_SSH_PRIVATE_KEYFILE
2654 Pass a char * pointing to a file name for your private key. If not used,
2655 libcurl defaults to \fB$HOME/.ssh/id_dsa\fP if the HOME environment variable
2656 is set, and just "id_dsa" in the current directory if HOME is not set.  If the
2657 file is password-protected, set the password with
2658 \fICURLOPT_KEYPASSWD\fP. (Added in 7.16.1)
2659 .IP CURLOPT_SSH_KNOWNHOSTS
2660 Pass a pointer to a zero terminated string holding the file name of the
2661 known_host file to use.  The known_hosts file should use the OpenSSH file
2662 format as supported by libssh2. If this file is specified, libcurl will only
2663 accept connections with hosts that are known and present in that file, with a
2664 matching public key. Use \fICURLOPT_SSH_KEYFUNCTION\fP to alter the default
2665 behavior on host and key (mis)matching. (Added in 7.19.6)
2666 .IP CURLOPT_SSH_KEYFUNCTION
2667 Pass a pointer to a curl_sshkeycallback function. It gets called when the
2668 known_host matching has been done, to allow the application to act and decide
2669 for libcurl how to proceed. The callback will only be called if
2670 \fICURLOPT_SSH_KNOWNHOSTS\fP is also set.
2671
2672 .nf
2673 int curl_sshkeycallback (CURL *easy,     /* easy handle */
2674                          const struct curl_khkey *knownkey, /* known */
2675                          const struct curl_khkey *foundkey, /* found */
2676                          enum curl_khmatch, /* libcurl's view on the keys */
2677                          void *clientp);
2678 .fi
2679
2680 The curl_sshkeycallback function gets passed the CURL handle, the key from the
2681 known_hosts file, the key from the remote site, info from libcurl on the
2682 matching status and a custom pointer (set with \fICURLOPT_SSH_KEYDATA\fP). It
2683 MUST return one of the following return codes to tell libcurl how to act:
2684 .RS
2685 .IP CURLKHSTAT_FINE_ADD_TO_FILE
2686 The host+key is accepted and libcurl will append it to the known_hosts file
2687 before continuing with the connection. This will also add the host+key combo
2688 to the known_host pool kept in memory if it wasn't already present there. The
2689 adding of data to the file is done by completely replacing the file with a new
2690 copy, so the permissions of the file must allow this.
2691 .IP CURLKHSTAT_FINE
2692 The host+key is accepted libcurl will continue with the connection. This will
2693 also add the host+key combo to the known_host pool kept in memory if it wasn't
2694 already present there.
2695 .IP CURLKHSTAT_REJECT
2696 The host+key is rejected. libcurl will deny the connection to continue and it
2697 will be closed.
2698 .IP CURLKHSTAT_DEFER
2699 The host+key is rejected, but the SSH connection is asked to be kept alive.
2700 This feature could be used when the app wants to somehow return back and act
2701 on the host+key situation and then retry without needing the overhead of
2702 setting it up from scratch again.
2703 .RE
2704  (Added in 7.19.6)
2705 .IP CURLOPT_SSH_KEYDATA
2706 Pass a void * as parameter. This pointer will be passed along verbatim to the
2707 callback set with \fICURLOPT_SSH_KEYFUNCTION\fP. (Added in 7.19.6)
2708 .SH OTHER OPTIONS
2709 .IP CURLOPT_PRIVATE
2710 Pass a void * as parameter, pointing to data that should be associated with
2711 this curl handle.  The pointer can subsequently be retrieved using
2712 \fIcurl_easy_getinfo(3)\fP with the CURLINFO_PRIVATE option. libcurl itself
2713 does nothing with this data. (Added in 7.10.3)
2714 .IP CURLOPT_SHARE
2715 Pass a share handle as a parameter. The share handle must have been created by
2716 a previous call to \fIcurl_share_init(3)\fP. Setting this option, will make
2717 this curl handle use the data from the shared handle instead of keeping the
2718 data to itself. This enables several curl handles to share data. If the curl
2719 handles are used simultaneously in multiple threads, you \fBMUST\fP use the
2720 locking methods in the share handle. See \fIcurl_share_setopt(3)\fP for
2721 details.
2722
2723 If you add a share that is set to share cookies, your easy handle will use
2724 that cookie cache and get the cookie engine enabled. If you unshare an object
2725 that was using cookies (or change to another object that doesn't share
2726 cookies), the easy handle will get its cookie engine disabled.
2727
2728 Data that the share object is not set to share will be dealt with the usual
2729 way, as if no share was used.
2730 .IP CURLOPT_NEW_FILE_PERMS
2731 Pass a long as a parameter, containing the value of the permissions that will
2732 be assigned to newly created files on the remote server.  The default value is
2733 \fI0644\fP, but any valid value can be used.  The only protocols that can use
2734 this are \fIsftp://\fP, \fIscp://\fP, and \fIfile://\fP. (Added in 7.16.4)
2735 .IP CURLOPT_NEW_DIRECTORY_PERMS
2736 Pass a long as a parameter, containing the value of the permissions that will
2737 be assigned to newly created directories on the remote server.  The default
2738 value is \fI0755\fP, but any valid value can be used.  The only protocols that
2739 can use this are \fIsftp://\fP, \fIscp://\fP, and \fIfile://\fP.
2740 (Added in 7.16.4)
2741 .SH TELNET OPTIONS
2742 .IP CURLOPT_TELNETOPTIONS
2743 Provide a pointer to a curl_slist with variables to pass to the telnet
2744 negotiations. The variables should be in the format <option=value>. libcurl
2745 supports the options 'TTYPE', 'XDISPLOC' and 'NEW_ENV'. See the TELNET
2746 standard for details.
2747 .SH RETURN VALUE
2748 CURLE_OK (zero) means that the option was set properly, non-zero means an
2749 error occurred as \fI<curl/curl.h>\fP defines. See the \fIlibcurl-errors(3)\fP
2750 man page for the full list with descriptions.
2751
2752 If you try to set an option that libcurl doesn't know about, perhaps because
2753 the library is too old to support it or the option was removed in a recent
2754 version, this function will return \fICURLE_FAILED_INIT\fP.
2755 .SH "SEE ALSO"
2756 .BR curl_easy_init "(3), " curl_easy_cleanup "(3), " curl_easy_reset "(3)"