curl_easy_setopt.3 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at http://curl.haxx.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .\"
  23. .TH curl_easy_setopt 3 "25 Jun 2014" "libcurl 7.38.0" "libcurl Manual"
  24. .SH NAME
  25. curl_easy_setopt \- set options for a curl easy handle
  26. .SH SYNOPSIS
  27. #include <curl/curl.h>
  28. CURLcode curl_easy_setopt(CURL *handle, CURLoption option, parameter);
  29. .SH DESCRIPTION
  30. curl_easy_setopt() is used to tell libcurl how to behave. By using the
  31. appropriate options to \fIcurl_easy_setopt\fP, you can change libcurl's
  32. behavior. All options are set with the \fIoption\fP followed by a
  33. \fIparameter\fP. That parameter can be a \fBlong\fP, a \fBfunction pointer\fP,
  34. an \fBobject pointer\fP or a \fBcurl_off_t\fP, depending on what the specific
  35. option expects. Read this manual carefully as bad input values may cause
  36. libcurl to behave badly! You can only set one option in each function call. A
  37. typical application uses many curl_easy_setopt() calls in the setup phase.
  38. Options set with this function call are valid for all forthcoming transfers
  39. performed using this \fIhandle\fP. The options are not in any way reset
  40. between transfers, so if you want subsequent transfers with different options,
  41. you must change them between the transfers. You can optionally reset all
  42. options back to internal default with \fIcurl_easy_reset(3)\fP.
  43. Strings passed to libcurl as 'char *' arguments, are copied by the library;
  44. thus the string storage associated to the pointer argument may be overwritten
  45. after curl_easy_setopt() returns. The only exception to this rule is really
  46. \fICURLOPT_POSTFIELDS(3)\fP, but the alternative that copies the string
  47. \fICURLOPT_COPYPOSTFIELDS(3)\fP has some usage characteristics you need to
  48. read up on.
  49. Before version 7.17.0, strings were not copied. Instead the user was forced
  50. keep them available until libcurl no longer needed them.
  51. The \fIhandle\fP is the return code from a \fIcurl_easy_init(3)\fP or
  52. \fIcurl_easy_duphandle(3)\fP call.
  53. .SH BEHAVIOR OPTIONS
  54. .IP CURLOPT_VERBOSE
  55. Display verbose information. See \fICURLOPT_VERBOSE(3)\fP
  56. .IP CURLOPT_HEADER
  57. Include the header in the body output. See \fICURLOPT_HEADER(3)\fP
  58. .IP CURLOPT_NOPROGRESS
  59. Shut off the progress meter. See \fICURLOPT_NOPROGRESS(3)\fP
  60. .IP CURLOPT_NOSIGNAL
  61. Do not install signal handlers. See \fICURLOPT_NOSIGNAL(3)\fP
  62. .IP CURLOPT_WILDCARDMATCH
  63. Transfer multiple files according to a file name pattern. See \fICURLOPT_WILDCARDMATCH(3)\fP
  64. .SH CALLBACK OPTIONS
  65. .IP CURLOPT_WRITEFUNCTION
  66. Callback for writing data. See \fICURLOPT_WRITEFUNCTION(3)\fP
  67. .IP CURLOPT_WRITEDATA
  68. Data pointer to pass to the write callback. See \fICURLOPT_WRITEDATA(3)\fP
  69. .IP CURLOPT_READFUNCTION
  70. Callback for reading data. See \fICURLOPT_READFUNCTION(3)\fP
  71. .IP CURLOPT_READDATA
  72. Data pointer to pass to the read callback. See \fICURLOPT_READDATA(3)\fP
  73. .IP CURLOPT_IOCTLFUNCTION
  74. Callback for I/O operations. See \fICURLOPT_IOCTLFUNCTION(3)\fP
  75. .IP CURLOPT_IOCTLDATA
  76. Data pointer to pass to the i/o callback. See \fICURLOPT_IOCTLDATA(3)\fP
  77. .IP CURLOPT_SEEKFUNCTION
  78. Callback for seek operations. See \fICURLOPT_SEEKFUNCTION(3)\fP
  79. .IP CURLOPT_SEEKDATA
  80. Data pointer to pass to the seek callback. See \fICURLOPT_SEEKDATA(3)\fP
  81. .IP CURLOPT_SOCKOPTFUNCTION
  82. Callback for sockopt operations. See \fICURLOPT_SOCKOPTFUNCTION(3)\fP
  83. .IP CURLOPT_SOCKOPTDATA
  84. Data pointer to pass to the sockopt callback. See \fICURLOPT_SOCKOPTDATA(3)\fP
  85. .IP CURLOPT_OPENSOCKETFUNCTION
  86. Callback for socket creation. See \fICURLOPT_OPENSOCKETFUNCTION(3)\fP
  87. .IP CURLOPT_OPENSOCKETDATA
  88. Data pointer to pass to the open socket callback. See \fICURLOPT_OPENSOCKETDATA(3)\fP
  89. .IP CURLOPT_CLOSESOCKETFUNCTION
  90. Callback for closing socket. See \fICURLOPT_CLOSESOCKETFUNCTION(3)\fP
  91. .IP CURLOPT_CLOSESOCKETDATA
  92. Data pointer to pass to the close socket callback. See \fICURLOPT_CLOSESOCKETDATA(3)\fP
  93. .IP CURLOPT_PROGRESSFUNCTION
  94. OBSOLETE callback for progress meter. See \fICURLOPT_PROGRESSFUNCTION(3)\fP
  95. .IP CURLOPT_PROGRESSDATA
  96. Data pointer to pass to the progress meter callback. See \fICURLOPT_PROGRESSDATA(3)\fP
  97. .IP CURLOPT_XFERINFOFUNCTION
  98. Callback for progress meter. See \fICURLOPT_XFERINFOFUNCTION(3)\fP
  99. .IP CURLOPT_XFERINFODATA
  100. Data pointer to pass to the progress meter callback. See \fICURLOPT_XFERINFODATA(3)\fP
  101. .IP CURLOPT_HEADERFUNCTION
  102. Callback for writing received headers. See \fICURLOPT_HEADERFUNCTION(3)\fP
  103. .IP CURLOPT_HEADERDATA
  104. Data pointer to pass to the header callback. See \fICURLOPT_HEADERDATA(3)\fP
  105. .IP CURLOPT_DEBUGFUNCTION
  106. Callback for debug information. See \fICURLOPT_DEBUGFUNCTION(3)\fP
  107. .IP CURLOPT_DEBUGDATA
  108. Data pointer to pass to the debug callback. See \fICURLOPT_DEBUGDATA(3)\fP
  109. .IP CURLOPT_SSL_CTX_FUNCTION
  110. Callback for SSL CTX logic. See \fICURLOPT_SSL_CTX_FUNCTION(3)\fP
  111. .IP CURLOPT_SSL_CTX_DATA
  112. Data pointer to pass to the ssl context callback. See \fICURLOPT_SSL_CTX_DATA(3)\fP
  113. .IP CURLOPT_CONV_TO_NETWORK_FUNCTION
  114. Callback for code base conversion. See \fICURLOPT_CONV_TO_NETWORK_FUNCTION(3)\fP
  115. .IP CURLOPT_CONV_FROM_NETWORK_FUNCTION
  116. Callback for code base conversion. See \fICURLOPT_CONV_FROM_NETWORK_FUNCTION(3)\fP
  117. .IP CURLOPT_CONV_FROM_UTF8_FUNCTION
  118. Callback for code base conversion. See \fICURLOPT_CONV_FROM_UTF8_FUNCTION(3)\fP
  119. .IP CURLOPT_INTERLEAVEFUNCTION
  120. Callback for RTSP interleaved data. See \fICURLOPT_INTERLEAVEFUNCTION(3)\fP
  121. .IP CURLOPT_INTERLEAVEDATA
  122. Data pointer to pass to the interleave callback. See \fICURLOPT_INTERLEAVEDATA(3)\fP
  123. .IP CURLOPT_CHUNK_BGN_FUNCTION
  124. Callback for wildcard download start of chunk. See \fICURLOPT_CHUNK_BGN_FUNCTION(3)\fP
  125. .IP CURLOPT_CHUNK_END_FUNCTION
  126. Callback for wildcard download end of chunk. See \fICURLOPT_CHUNK_END_FUNCTION(3)\fP
  127. .IP CURLOPT_CHUNK_DATA
  128. Data pointer to pass to the chunk callbacks. See \fICURLOPT_CHUNK_DATA(3)\fP
  129. .IP CURLOPT_FNMATCH_FUNCTION
  130. Callback for wildcard matching. See \fICURLOPT_FNMATCH_FUNCTION(3)\fP
  131. .IP CURLOPT_FNMATCH_DATA
  132. Data pointer to pass to the fnmatch callback. See \fICURLOPT_FNMATCH_DATA(3)\fP
  133. .SH ERROR OPTIONS
  134. .IP CURLOPT_ERRORBUFFER
  135. Error message buffer. See \fICURLOPT_ERRORBUFFER(3)\fP
  136. .IP CURLOPT_STDERR
  137. stderr replacement stream. See \fICURLOPT_STDERR(3)\fP
  138. .IP CURLOPT_FAILONERROR
  139. Fail on HTTP 4xx errors. \fICURLOPT_FAILONERROR(3)\fP
  140. .SH NETWORK OPTIONS
  141. .IP CURLOPT_URL
  142. URL to work on. See \fICURLOPT_URL(3)\fP
  143. .IP CURLOPT_PROTOCOLS
  144. Allowed protocols. See \fICURLOPT_PROTOCOLS(3)\fP
  145. .IP CURLOPT_REDIR_PROTOCOLS
  146. Protocols to allow redirects to. See \fICURLOPT_REDIR_PROTOCOLS(3)\fP
  147. .IP CURLOPT_PROXY
  148. Proxy to use. See \fICURLOPT_PROXY(3)\fP
  149. .IP CURLOPT_PROXYPORT
  150. Proxy port to use. See \fICURLOPT_PROXYPORT(3)\fP
  151. .IP CURLOPT_PROXYTYPE
  152. Proxy type. See \fICURLOPT_PROXYTYPE(3)\fP
  153. .IP CURLOPT_NOPROXY
  154. Filter out hosts from proxy use. \fICURLOPT_NOPROXY(3)\fP
  155. .IP CURLOPT_HTTPPROXYTUNNEL
  156. Tunnel through the HTTP proxy. \fICURLOPT_HTTPPROXYTUNNEL(3)\fP
  157. .IP CURLOPT_SOCKS5_GSSAPI_SERVICE
  158. Socks5 gassapi service name. \fICURLOPT_SOCKS5_GSSAPI_SERVICE(3)\fP
  159. .IP CURLOPT_SOCKS5_GSSAPI_NEC
  160. Socks5 gssapi NEC mode. See \fICURLOPT_SOCKS5_GSSAPI_NEC(3)\fP
  161. .IP CURLOPT_INTERFACE
  162. Bind connection locally to this. See \fICURLOPT_INTERFACE(3)\fP
  163. .IP CURLOPT_LOCALPORT
  164. Bind connection locally to this port. See \fICURLOPT_LOCALPORT(3)\fP
  165. .IP CURLOPT_LOCALPORTRANGE
  166. Bind connection locally to port range. See \fICURLOPT_LOCALPORTRANGE(3)\fP
  167. .IP CURLOPT_DNS_CACHE_TIMEOUT
  168. Timeout for DNS cache. See \fICURLOPT_DNS_CACHE_TIMEOUT(3)\fP
  169. .IP CURLOPT_DNS_USE_GLOBAL_CACHE
  170. OBSOLETE Enable global DNS cache. See \fICURLOPT_DNS_USE_GLOBAL_CACHE(3)\fP
  171. .IP CURLOPT_BUFFERSIZE
  172. Ask for smaller buffer size. See \fICURLOPT_BUFFERSIZE(3)\fP
  173. .IP CURLOPT_PORT
  174. Port number to connect to. See \fICURLOPT_PORT(3)\fP
  175. .IP CURLOPT_TCP_NODELAY
  176. Disable the Nagle algorithm. See \fICURLOPT_TCP_NODELAY(3)\fP
  177. .IP CURLOPT_ADDRESS_SCOPE
  178. IPv6 scope for local addresses. See \fICURLOPT_ADDRESS_SCOPE(3)\fP
  179. .IP CURLOPT_TCP_KEEPALIVE
  180. Enable TCP keep-alive. See \fICURLOPT_TCP_KEEPALIVE(3)\fP
  181. .IP CURLOPT_TCP_KEEPIDLE
  182. Idle time before sending keep-alive. See \fICURLOPT_TCP_KEEPIDLE(3)\fP
  183. .IP CURLOPT_TCP_KEEPINTVL
  184. Interval between keep-alive probes. See \fICURLOPT_TCP_KEEPINTVL(3)\fP
  185. .SH NAMES and PASSWORDS OPTIONS (Authentication)
  186. .IP CURLOPT_NETRC
  187. Enable .netrc parsing. See \fICURLOPT_NETRC(3)\fP
  188. .IP CURLOPT_NETRC_FILE
  189. \&.netrc file name. See \fICURLOPT_NETRC_FILE(3)\fP
  190. .IP CURLOPT_USERPWD
  191. User and password. See \fICURLOPT_USERPWD(3)\fP
  192. .IP CURLOPT_PROXYUSERPWD
  193. Proxy user and password. See \fICURLOPT_PROXYUSERPWD(3)\fP
  194. .IP CURLOPT_USERNAME
  195. Username. See \fICURLOPT_USERNAME(3)\fP
  196. .IP CURLOPT_PASSWORD
  197. Password. See \fICURLOPT_PASSWORD(3)\fP
  198. .IP CURLOPT_LOGIN_OPTIONS
  199. Login options. See \fICURLOPT_LOGIN_OPTIONS(3)\fP
  200. .IP CURLOPT_PROXYUSERNAME
  201. Proxy user name. See \fICURLOPT_PROXYUSERNAME(3)\fP
  202. .IP CURLOPT_PROXYPASSWORD
  203. Proxy password. See \fICURLOPT_PROXYPASSWORD(3)\fP
  204. .IP CURLOPT_HTTPAUTH
  205. HTTP server authentication methods. See \fICURLOPT_HTTPAUTH(3)\fP
  206. .IP CURLOPT_TLSAUTH_USERNAME
  207. TLS authentication user name. See \fICURLOPT_TLSAUTH_USERNAME(3)\fP
  208. .IP CURLOPT_TLSAUTH_PASSWORD
  209. TLS authentication password. See \fICURLOPT_TLSAUTH_PASSWORD(3)\fP
  210. .IP CURLOPT_PROXYAUTH
  211. HTTP proxy authentication methods. See \fICURLOPT_PROXYAUTH(3)\fP
  212. .IP CURLOPT_SASL_IR
  213. Enable SASL initial response. See \fICURLOPT_SASL_IR(3)\fP
  214. .IP CURLOPT_XOAUTH2_BEARER
  215. XOAuth2 bearer token. See \fICURLOPT_XOAUTH2_BEARER(3)\fP
  216. .SH HTTP OPTIONS
  217. .IP CURLOPT_AUTOREFERER
  218. Automatically set Referer: header. See \fICURLOPT_AUTOREFERER(3)\fP
  219. .IP CURLOPT_ACCEPT_ENCODING
  220. Accept-Encoding and automatic decompressing data. See \fICURLOPT_ACCEPT_ENCODING(3)\fP
  221. .IP CURLOPT_TRANSFER_ENCODING
  222. Request Transfer-Encoding. See \fICURLOPT_TRANSFER_ENCODING(3)\fP
  223. .IP CURLOPT_FOLLOWLOCATION
  224. Follow HTTP redirects. See \fICURLOPT_FOLLOWLOCATION(3)\fP
  225. .IP CURLOPT_UNRESTRICTED_AUTH
  226. Do not restrict auth to original host. \fICURLOPT_UNRESTRICTED_AUTH(3)\fP
  227. .IP CURLOPT_MAXREDIRS
  228. Maximum number of redirects to follow. See \fICURLOPT_MAXREDIRS(3)\fP
  229. .IP CURLOPT_POSTREDIR
  230. How to act on redirects after POST. See \fICURLOPT_POSTREDIR(3)\fP
  231. .IP CURLOPT_PUT
  232. Issue a HTTP PUT request. See \fICURLOPT_PUT(3)\fP
  233. .IP CURLOPT_POST
  234. Issue a HTTP POST request. See \fICURLOPT_POST(3)\fP
  235. .IP CURLOPT_POSTFIELDS
  236. Send a POST with this data. See \fICURLOPT_POSTFIELDS(3)\fP
  237. .IP CURLOPT_POSTFIELDSIZE
  238. The POST data is this big. See \fICURLOPT_POSTFIELDSIZE(3)\fP
  239. .IP CURLOPT_POSTFIELDSIZE_LARGE
  240. The POST data is this big. See \fICURLOPT_POSTFIELDSIZE_LARGE(3)\fP
  241. .IP CURLOPT_COPYPOSTFIELDS
  242. Send a POST with this data - and copy it. See \fICURLOPT_COPYPOSTFIELDS(3)\fP
  243. .IP CURLOPT_HTTPPOST
  244. Multipart formpost HTTP POST. See \fICURLOPT_HTTPPOST(3)\fP
  245. .IP CURLOPT_REFERER
  246. Referer: header. See \fICURLOPT_REFERER(3)\fP
  247. .IP CURLOPT_USERAGENT
  248. User-Agent: header. See \fICURLOPT_USERAGENT(3)\fP
  249. .IP CURLOPT_HTTPHEADER
  250. Custom HTTP headers. See \fICURLOPT_HTTPHEADER(3)\fP
  251. .IP CURLOPT_HEADEROPT
  252. Control custom headers. See \fICURLOPT_HEADEROPT(3)\fP
  253. .IP CURLOPT_PROXYHEADER
  254. Custom HTTP headers sent to proxy. See \fICURLOPT_PROXYHEADER(3)\fP
  255. .IP CURLOPT_HTTP200ALIASES
  256. Alternative versions of 200 OK. See \fICURLOPT_HTTP200ALIASES(3)\fP
  257. .IP CURLOPT_COOKIE
  258. Cookie(s) to send. See \fICURLOPT_COOKIE(3)\fP
  259. .IP CURLOPT_COOKIEFILE
  260. File to read cookies from. See \fICURLOPT_COOKIEFILE(3)\fP
  261. .IP CURLOPT_COOKIEJAR
  262. File to write cookies to. See \fICURLOPT_COOKIEJAR(3)\fP
  263. .IP CURLOPT_COOKIESESSION
  264. Start a new cookie session. See \fICURLOPT_COOKIESESSION(3)\fP
  265. .IP CURLOPT_COOKIELIST
  266. Add or control cookies. See \fICURLOPT_COOKIELIST(3)\fP
  267. .IP CURLOPT_HTTPGET
  268. Do a HTTP GET request. See \fICURLOPT_HTTPGET(3)\fP
  269. .IP CURLOPT_HTTP_VERSION
  270. HTTP version to use. \fICURLOPT_HTTP_VERSION(3)\fP
  271. .IP CURLOPT_IGNORE_CONTENT_LENGTH
  272. Ignore Content-Length. See \fICURLOPT_IGNORE_CONTENT_LENGTH(3)\fP
  273. .IP CURLOPT_HTTP_CONTENT_DECODING
  274. Disable Content decoding. See \fICURLOPT_HTTP_CONTENT_DECODING(3)\fP
  275. .IP CURLOPT_HTTP_TRANSFER_DECODING
  276. Disable Transfer decoding. See \fICURLOPT_HTTP_TRANSFER_DECODING(3)\fP
  277. .IP CURLOPT_EXPECT_100_TIMEOUT_MS
  278. 100-continue timeout. See \fICURLOPT_EXPECT_100_TIMEOUT_MS(3)\fP
  279. .SH SMTP OPTIONS
  280. .IP CURLOPT_MAIL_FROM
  281. Address of the sender. See \fICURLOPT_MAIL_FROM(3)\fP
  282. .IP CURLOPT_MAIL_RCPT
  283. Address of the recipients. See \fICURLOPT_MAIL_RCPT(3)\fP
  284. .IP CURLOPT_MAIL_AUTH
  285. Authentication address. See \fICURLOPT_MAIL_AUTH(3)\fP
  286. .SH TFTP OPTIONS
  287. .IP CURLOPT_TFTP_BLKSIZE
  288. TFTP block size. See \fICURLOPT_TFTP_BLKSIZE(3)\fP
  289. .SH FTP OPTIONS
  290. .IP CURLOPT_FTPPORT
  291. Use active FTP. See \fICURLOPT_FTPPORT(3)\fP
  292. .IP CURLOPT_QUOTE
  293. Commands to run before transfer. See \fICURLOPT_QUOTE(3)\fP
  294. .IP CURLOPT_POSTQUOTE
  295. Commands to run after transfer. See \fICURLOPT_POSTQUOTE(3)\fP
  296. .IP CURLOPT_PREQUOTE
  297. Commands to run just before transfer. See \fICURLOPT_PREQUOTE(3)\fP
  298. .IP CURLOPT_DIRLISTONLY
  299. List only. See \fICURLOPT_DIRLISTONLY(3)\fP
  300. .IP CURLOPT_APPEND
  301. Append to remote file. See \fICURLOPT_APPEND(3)\fP
  302. .IP CURLOPT_FTP_USE_EPRT
  303. Use EPTR. See \fICURLOPT_FTP_USE_EPRT(3)\fP
  304. .IP CURLOPT_FTP_USE_EPSV
  305. Use EPSV. See \fICURLOPT_FTP_USE_EPSV(3)\fP
  306. .IP CURLOPT_FTP_USE_PRET
  307. Use PRET. See \fICURLOPT_FTP_USE_PRET(3)\fP
  308. .IP CURLOPT_FTP_CREATE_MISSING_DIRS
  309. Create missing dirs on the remote server. See \fICURLOPT_FTP_CREATE_MISSING_DIRS(3)\fP
  310. .IP CURLOPT_FTP_RESPONSE_TIMEOUT
  311. Timeout for FTP responses. See \fICURLOPT_FTP_RESPONSE_TIMEOUT(3)\fP
  312. .IP CURLOPT_FTP_ALTERNATIVE_TO_USER
  313. Alternative to USER. See \fICURLOPT_FTP_ALTERNATIVE_TO_USER(3)\fP
  314. .IP CURLOPT_FTP_SKIP_PASV_IP
  315. Ignore the IP address in the PASV response. See \fICURLOPT_FTP_SKIP_PASV_IP(3)\fP
  316. .IP CURLOPT_FTPSSLAUTH
  317. Control how to do TLS. See \fICURLOPT_FTPSSLAUTH(3)\fP
  318. .IP CURLOPT_FTP_SSL_CCC
  319. Back to non-TLS again after authentication. See \fICURLOPT_FTP_SSL_CCC(3)\fP
  320. .IP CURLOPT_FTP_ACCOUNT
  321. Send ACCT command. See \fICURLOPT_FTP_ACCOUNT(3)\fP
  322. .IP CURLOPT_FTP_FILEMETHOD
  323. Specify how to reach files. See \fICURLOPT_FTP_FILEMETHOD(3)\fP
  324. .SH RTSP OPTIONS
  325. .IP CURLOPT_RTSP_REQUEST
  326. RTSP request. See \fICURLOPT_RTSP_REQUEST(3)\fP
  327. .IP CURLOPT_RTSP_SESSION_ID
  328. RTSP session-id. See \fICURLOPT_RTSP_SESSION_ID(3)\fP
  329. .IP CURLOPT_RTSP_STREAM_URI
  330. RTSP stream URI. See \fICURLOPT_RTSP_STREAM_URI(3)\fP
  331. .IP CURLOPT_RTSP_TRANSPORT
  332. RTSP Transport: header. See \fICURLOPT_RTSP_TRANSPORT(3)\fP
  333. .IP CURLOPT_RTSP_CLIENT_CSEQ
  334. Client CSEQ number. See \fICURLOPT_RTSP_CLIENT_CSEQ(3)\fP
  335. .IP CURLOPT_RTSP_SERVER_CSEQ
  336. CSEQ number for RTSP Server->Client request. See \fICURLOPT_RTSP_SERVER_CSEQ(3)\fP
  337. .SH PROTOCOL OPTIONS
  338. .IP CURLOPT_TRANSFERTEXT
  339. Use text transfer. See \fICURLOPT_TRANSFERTEXT(3)\fP
  340. .IP CURLOPT_PROXY_TRANSFER_MODE
  341. Add transfer mode to URL over proxy. See \fICURLOPT_PROXY_TRANSFER_MODE(3)\fP
  342. .IP CURLOPT_CRLF
  343. Convert newlines. See \fICURLOPT_CRLF(3)\fP
  344. .IP CURLOPT_RANGE
  345. Range requests. See \fICURLOPT_RANGE(3)\fP
  346. .IP CURLOPT_RESUME_FROM
  347. Resume a transfer. See \fICURLOPT_RESUME_FROM(3)\fP
  348. .IP CURLOPT_RESUME_FROM_LARGE
  349. Resume a transfer. See \fICURLOPT_RESUME_FROM_LARGE(3)\fP
  350. .IP CURLOPT_CUSTOMREQUEST
  351. Custom request/method. See \fICURLOPT_CUSTOMREQUEST(3)\fP
  352. .IP CURLOPT_FILETIME
  353. Request file modification date and time. See \fICURLOPT_FILETIME(3)\fP
  354. .IP CURLOPT_NOBODY
  355. Do not get the body contents. See \fICURLOPT_NOBODY(3)\fP
  356. .IP CURLOPT_INFILESIZE
  357. Size of file to send. \fICURLOPT_INFILESIZE(3)\fP
  358. .IP CURLOPT_INFILESIZE_LARGE
  359. Size of file to send. \fICURLOPT_INFILESIZE_LARGE(3)\fP
  360. .IP CURLOPT_UPLOAD
  361. Upload data. See \fICURLOPT_UPLOAD(3)\fP
  362. .IP CURLOPT_MAXFILESIZE
  363. Maximum file size to get. See \fICURLOPT_MAXFILESIZE(3)\fP
  364. .IP CURLOPT_MAXFILESIZE_LARGE
  365. Maximum file size to get. See \fICURLOPT_MAXFILESIZE_LARGE(3)\fP
  366. .IP CURLOPT_TIMECONDITION
  367. Make a time conditional request. See \fICURLOPT_TIMECONDITION(3)\fP
  368. .IP CURLOPT_TIMEVALUE
  369. Time value for the time conditional request. See \fICURLOPT_TIMEVALUE(3)\fP
  370. .SH CONNECTION OPTIONS
  371. .IP CURLOPT_TIMEOUT
  372. Timeout for the entire request. See \fICURLOPT_TIMEOUT(3)\fP
  373. .IP CURLOPT_TIMEOUT_MS
  374. Millisecond timeout for the entire request. See \fICURLOPT_TIMEOUT_MS(3)\fP
  375. .IP CURLOPT_LOW_SPEED_LIMIT
  376. Low speed limit to abort transfer. See \fICURLOPT_LOW_SPEED_LIMIT(3)\fP
  377. .IP CURLOPT_LOW_SPEED_TIME
  378. Time to be below the speed to trigger low speed abort. See \fICURLOPT_LOW_SPEED_TIME(3)\fP
  379. .IP CURLOPT_MAX_SEND_SPEED_LARGE
  380. Cap upload speed to this. See \fICURLOPT_MAX_SEND_SPEED_LARGE(3)\fP
  381. .IP CURLOPT_MAX_RECV_SPEED_LARGE
  382. Cap download speed to this. See \fICURLOPT_MAX_RECV_SPEED_LARGE(3)\fP
  383. .IP CURLOPT_MAXCONNECTS
  384. Max number of connection is connection pool. See \fICURLOPT_MAXCONNECTS(3)\fP
  385. .IP CURLOPT_FRESH_CONNECT
  386. Use a new connection. \fICURLOPT_FRESH_CONNECT(3)\fP
  387. .IP CURLOPT_FORBID_REUSE
  388. Prevent subsequent connections from re-using this. See \fICURLOPT_FORBID_REUSE(3)\fP
  389. .IP CURLOPT_CONNECTTIMEOUT
  390. Timeout for the connection phase. See \fICURLOPT_CONNECTTIMEOUT(3)\fP
  391. .IP CURLOPT_CONNECTTIMEOUT_MS
  392. Millisecond timeout for the connection phase. See \fICURLOPT_CONNECTTIMEOUT_MS(3)\fP
  393. .IP CURLOPT_IPRESOLVE
  394. IP version to resolve to. See \fICURLOPT_IPRESOLVE(3)\fP
  395. .IP CURLOPT_CONNECT_ONLY
  396. Only connect, nothing else. See \fICURLOPT_CONNECT_ONLY(3)\fP
  397. .IP CURLOPT_USE_SSL
  398. Use TLS/SSL. See \fICURLOPT_USE_SSL(3)\fP
  399. .IP CURLOPT_RESOLVE
  400. Provide fixed/fake name resolves. See \fICURLOPT_RESOLVE(3)\fP
  401. .IP CURLOPT_DNS_INTERFACE
  402. Bind name resolves to this interface. See \fICURLOPT_DNS_INTERFACE(3)\fP
  403. .IP CURLOPT_DNS_LOCAL_IP4
  404. Bind name resolves to this IP4 address. See \fICURLOPT_DNS_LOCAL_IP4(3)\fP
  405. .IP CURLOPT_DNS_LOCAL_IP6
  406. Bind name resolves to this IP6 address. See \fICURLOPT_DNS_LOCAL_IP6(3)\fP
  407. .IP CURLOPT_ACCEPTTIMEOUT_MS
  408. Timeout for waiting for the server's connect back to be accepted. See \fICURLOPT_ACCEPTTIMEOUT_MS(3)\fP
  409. .SH SSL and SECURITY OPTIONS
  410. .IP CURLOPT_SSLCERT
  411. Client cert. See \fICURLOPT_SSLCERT(3)\fP
  412. .IP CURLOPT_SSLCERTTYPE
  413. Client cert type. See \fICURLOPT_SSLCERTTYPE(3)\fP
  414. .IP CURLOPT_SSLKEY
  415. Client key. See \fICURLOPT_SSLKEY(3)\fP
  416. .IP CURLOPT_SSLKEYTYPE
  417. Client key type. See \fICURLOPT_SSLKEYTYPE(3)\fP
  418. .IP CURLOPT_KEYPASSWD
  419. Client key password. See \fICURLOPT_KEYPASSWD(3)\fP
  420. .IP CURLOPT_SSL_ENABLE_ALPN
  421. Enable use of ALPN. See \fICURLOPT_SSL_ENABLE_ALPN(3)\fP
  422. .IP CURLOPT_SSL_ENABLE_NPN
  423. )Enable use of NPN. See \fICURLOPT_SSL_ENABLE_NPN(3)\fP
  424. .IP CURLOPT_SSLENGINE
  425. Use identifier with SSL engine. See \fICURLOPT_SSLENGINE(3)\fP
  426. .IP CURLOPT_SSLENGINE_DEFAULT
  427. Default SSL engine. See \fICURLOPT_SSLENGINE_DEFAULT(3)\fP
  428. .IP CURLOPT_SSLVERSION
  429. SSL version to use. See \fICURLOPT_SSLVERSION(3)\fP
  430. .IP CURLOPT_SSL_VERIFYPEER
  431. Verify the SSL certificate. See \fICURLOPT_SSL_VERIFYPEER(3)\fP
  432. .IP CURLOPT_CAINFO
  433. CA cert bundle. See \fICURLOPT_CAINFO(3)\fP
  434. .IP CURLOPT_ISSUERCERT
  435. Issuer certificate. See \fICURLOPT_ISSUERCERT(3)\fP
  436. .IP CURLOPT_CAPATH
  437. Path to CA cert bundle. See \fICURLOPT_CAPATH(3)\fP
  438. .IP CURLOPT_CRLFILE
  439. Certificate Revocation List. See \fICURLOPT_CRLFILE(3)\fP
  440. .IP CURLOPT_SSL_VERIFYHOST
  441. Verify the host name in the SSL certificate. See \fICURLOPT_SSL_VERIFYHOST(3)\fP
  442. .IP CURLOPT_CERTINFO
  443. Extract certificate info. See \fICURLOPT_CERTINFO(3)\fP
  444. .IP CURLOPT_RANDOM_FILE
  445. Provide source for entropy random data. See \fICURLOPT_RANDOM_FILE(3)\fP
  446. .IP CURLOPT_EGDSOCKET
  447. Identify EGD socket for entropy. See \fICURLOPT_EGDSOCKET(3)\fP
  448. .IP CURLOPT_SSL_CIPHER_LIST
  449. Ciphers to use. See \fICURLOPT_SSL_CIPHER_LIST(3)\fP
  450. .IP CURLOPT_SSL_SESSIONID_CACHE
  451. Disable SSL session-id cache. See \fICURLOPT_SSL_SESSIONID_CACHE(3)\fP
  452. .IP CURLOPT_SSL_OPTIONS
  453. Control SSL behavior. See \fICURLOPT_SSL_OPTIONS(3)\fP
  454. .IP CURLOPT_KRBLEVEL
  455. Kerberos security level. See \fICURLOPT_KRBLEVEL(3)\fP
  456. .IP CURLOPT_GSSAPI_DELEGATION
  457. Disable GSS-API delegation. See \fICURLOPT_GSSAPI_DELEGATION(3)\fP
  458. .SH SSH OPTIONS
  459. .IP CURLOPT_SSH_AUTH_TYPES
  460. SSH authentication types. See \fICURLOPT_SSH_AUTH_TYPES(3)\fP
  461. .IP CURLOPT_SSH_HOST_PUBLIC_KEY_MD5
  462. MD5 of host's public key. See \fICURLOPT_SSH_HOST_PUBLIC_KEY_MD5(3)\fP
  463. .IP CURLOPT_SSH_PUBLIC_KEYFILE
  464. File name of public key. See \fICURLOPT_SSH_PUBLIC_KEYFILE(3)\fP
  465. .IP CURLOPT_SSH_PRIVATE_KEYFILE
  466. File name of private key. See \fICURLOPT_SSH_PRIVATE_KEYFILE(3)\fP
  467. .IP CURLOPT_SSH_KNOWNHOSTS
  468. File name with known hosts. See \fICURLOPT_SSH_KNOWNHOSTS(3)\fP
  469. .IP CURLOPT_SSH_KEYFUNCTION
  470. Callback for known hosts handling. See \fICURLOPT_SSH_KEYFUNCTION(3)\fP
  471. .IP CURLOPT_SSH_KEYDATA
  472. Custom pointer to pass to ssh key callback. See \fICURLOPT_SSH_KEYDATA(3)\fP
  473. .SH OTHER OPTIONS
  474. .IP CURLOPT_PRIVATE
  475. Private pointer to store. See \fICURLOPT_PRIVATE(3)\fP
  476. .IP CURLOPT_SHARE
  477. Share object to use. See \fICURLOPT_SHARE(3)\fP
  478. .IP CURLOPT_NEW_FILE_PERMS
  479. Mode for creating new remote files. See \fICURLOPT_NEW_FILE_PERMS(3)\fP
  480. .IP CURLOPT_NEW_DIRECTORY_PERMS
  481. Mode for creating new remote dirs. See \fICURLOPT_NEW_DIRECTORY_PERMS(3)\fP
  482. .SH TELNET OPTIONS
  483. .IP CURLOPT_TELNETOPTIONS
  484. TELNET options. See \fICURLOPT_TELNETOPTIONS(3)\fP
  485. .SH RETURN VALUE
  486. \fICURLE_OK\fP (zero) means that the option was set properly, non-zero means an
  487. error occurred as \fI<curl/curl.h>\fP defines. See the \fIlibcurl-errors(3)\fP
  488. man page for the full list with descriptions.
  489. If you try to set an option that libcurl doesn't know about, perhaps because
  490. the library is too old to support it or the option was removed in a recent
  491. version, this function will return \fICURLE_UNKNOWN_OPTION\fP. If support for
  492. the option was disabled at compile-time, it will return
  493. \fICURLE_NOT_BUILT_IN\fP.
  494. .SH "SEE ALSO"
  495. .BR curl_easy_init "(3), " curl_easy_cleanup "(3), " curl_easy_reset "(3)"