curl_easy_setopt.3
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:86k
源码类别:

TAPI编程

开发平台:

Visual C++

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