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