libcurl-symbols.3 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 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 https://curl.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. .\" * SPDX-License-Identifier: curl
  22. .\" *
  23. .\" **************************************************************************
  24. .TH libcurl-symbols 3 "Feb 15, 2023" "libcurl 7.41.0" "libcurl symbols"
  25. .SH NAME
  26. libcurl-symbols \- libcurl symbol version information
  27. .SH "libcurl symbols"
  28. This man page details version information for public symbols provided in the
  29. libcurl header files. This lists the first version in which the symbol was
  30. introduced and for some symbols two additional information pieces:
  31. The first version in which the symbol is marked "deprecated" - meaning that
  32. since that version no new code should be written to use the symbol as it is
  33. marked for getting removed in a future.
  34. The last version that featured the specific symbol. Using the symbol in source
  35. code will make it no longer compile error-free after that specified version.
  36. This man page is automatically generated from the symbols-in-versions file.
  37. .IP CURL_AT_LEAST_VERSION
  38. Introduced in 7.43.0
  39. .IP CURL_BLOB_COPY
  40. Introduced in 7.71.0
  41. .IP CURL_BLOB_NOCOPY
  42. Introduced in 7.71.0
  43. .IP CURL_CHUNK_BGN_FUNC_FAIL
  44. Introduced in 7.21.0
  45. .IP CURL_CHUNK_BGN_FUNC_OK
  46. Introduced in 7.21.0
  47. .IP CURL_CHUNK_BGN_FUNC_SKIP
  48. Introduced in 7.21.0
  49. .IP CURL_CHUNK_END_FUNC_FAIL
  50. Introduced in 7.21.0
  51. .IP CURL_CHUNK_END_FUNC_OK
  52. Introduced in 7.21.0
  53. .IP CURL_CSELECT_ERR
  54. Introduced in 7.16.3
  55. .IP CURL_CSELECT_IN
  56. Introduced in 7.16.3
  57. .IP CURL_CSELECT_OUT
  58. Introduced in 7.16.3
  59. .IP CURL_DEPRECATED
  60. Introduced in 7.87.0
  61. .IP CURL_DID_MEMORY_FUNC_TYPEDEFS
  62. Introduced in 7.49.0
  63. .IP CURL_EASY_NONE
  64. Introduced in 7.14.0
  65. .IP CURL_EASY_TIMEOUT
  66. Introduced in 7.14.0
  67. .IP CURL_ERROR_SIZE
  68. Introduced in 7.1
  69. .IP CURL_FNMATCHFUNC_FAIL
  70. Introduced in 7.21.0
  71. .IP CURL_FNMATCHFUNC_MATCH
  72. Introduced in 7.21.0
  73. .IP CURL_FNMATCHFUNC_NOMATCH
  74. Introduced in 7.21.0
  75. .IP CURL_FORMADD_DISABLED
  76. Introduced in 7.12.1
  77. Deprecated since 7.56.0
  78. .IP CURL_FORMADD_ILLEGAL_ARRAY
  79. Introduced in 7.9.8
  80. Deprecated since 7.56.0
  81. .IP CURL_FORMADD_INCOMPLETE
  82. Introduced in 7.9.8
  83. Deprecated since 7.56.0
  84. .IP CURL_FORMADD_MEMORY
  85. Introduced in 7.9.8
  86. Deprecated since 7.56.0
  87. .IP CURL_FORMADD_NULL
  88. Introduced in 7.9.8
  89. Deprecated since 7.56.0
  90. .IP CURL_FORMADD_OK
  91. Introduced in 7.9.8
  92. Deprecated since 7.56.0
  93. .IP CURL_FORMADD_OPTION_TWICE
  94. Introduced in 7.9.8
  95. Deprecated since 7.56.0
  96. .IP CURL_FORMADD_UNKNOWN_OPTION
  97. Introduced in 7.9.8
  98. Deprecated since 7.56.0
  99. .IP CURL_GLOBAL_ACK_EINTR
  100. Introduced in 7.30.0
  101. .IP CURL_GLOBAL_ALL
  102. Introduced in 7.8
  103. .IP CURL_GLOBAL_DEFAULT
  104. Introduced in 7.8
  105. .IP CURL_GLOBAL_NOTHING
  106. Introduced in 7.8
  107. .IP CURL_GLOBAL_SSL
  108. Introduced in 7.8
  109. .IP CURL_GLOBAL_WIN32
  110. Introduced in 7.8.1
  111. .IP CURL_HET_DEFAULT
  112. Introduced in 7.59.0
  113. .IP CURL_HTTP_VERSION_1_0
  114. Introduced in 7.9.1
  115. .IP CURL_HTTP_VERSION_1_1
  116. Introduced in 7.9.1
  117. .IP CURL_HTTP_VERSION_2
  118. Introduced in 7.43.0
  119. .IP CURL_HTTP_VERSION_2_0
  120. Introduced in 7.33.0
  121. .IP CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE
  122. Introduced in 7.49.0
  123. .IP CURL_HTTP_VERSION_2TLS
  124. Introduced in 7.47.0
  125. .IP CURL_HTTP_VERSION_3
  126. Introduced in 7.66.0
  127. .IP CURL_HTTP_VERSION_3ONLY
  128. Introduced in 7.88.0
  129. .IP CURL_HTTP_VERSION_NONE
  130. Introduced in 7.9.1
  131. .IP CURL_HTTPPOST_BUFFER
  132. Introduced in 7.46.0
  133. .IP CURL_HTTPPOST_CALLBACK
  134. Introduced in 7.46.0
  135. .IP CURL_HTTPPOST_FILENAME
  136. Introduced in 7.46.0
  137. .IP CURL_HTTPPOST_LARGE
  138. Introduced in 7.46.0
  139. .IP CURL_HTTPPOST_PTRBUFFER
  140. Introduced in 7.46.0
  141. .IP CURL_HTTPPOST_PTRCONTENTS
  142. Introduced in 7.46.0
  143. .IP CURL_HTTPPOST_PTRNAME
  144. Introduced in 7.46.0
  145. .IP CURL_HTTPPOST_READFILE
  146. Introduced in 7.46.0
  147. .IP CURL_IGNORE_DEPRECATION
  148. Introduced in 7.87.0
  149. .IP CURL_IPRESOLVE_V4
  150. Introduced in 7.10.8
  151. .IP CURL_IPRESOLVE_V6
  152. Introduced in 7.10.8
  153. .IP CURL_IPRESOLVE_WHATEVER
  154. Introduced in 7.10.8
  155. .IP CURL_ISOCPP
  156. Introduced in 7.10.2
  157. .IP CURL_LOCK_ACCESS_NONE
  158. Introduced in 7.10.3
  159. .IP CURL_LOCK_ACCESS_SHARED
  160. Introduced in 7.10.3
  161. .IP CURL_LOCK_ACCESS_SINGLE
  162. Introduced in 7.10.3
  163. .IP CURL_LOCK_DATA_CONNECT
  164. Introduced in 7.10.3
  165. .IP CURL_LOCK_DATA_COOKIE
  166. Introduced in 7.10.3
  167. .IP CURL_LOCK_DATA_DNS
  168. Introduced in 7.10.3
  169. .IP CURL_LOCK_DATA_HSTS
  170. Introduced in 7.88.0
  171. .IP CURL_LOCK_DATA_NONE
  172. Introduced in 7.10.3
  173. .IP CURL_LOCK_DATA_PSL
  174. Introduced in 7.61.0
  175. .IP CURL_LOCK_DATA_SHARE
  176. Introduced in 7.10.4
  177. .IP CURL_LOCK_DATA_SSL_SESSION
  178. Introduced in 7.10.3
  179. .IP CURL_LOCK_TYPE_CONNECT
  180. Introduced in 7.10
  181. .IP CURL_LOCK_TYPE_COOKIE
  182. Introduced in 7.10
  183. .IP CURL_LOCK_TYPE_DNS
  184. Introduced in 7.10
  185. .IP CURL_LOCK_TYPE_NONE
  186. Introduced in 7.10
  187. .IP CURL_LOCK_TYPE_SSL_SESSION
  188. Introduced in 7.10
  189. .IP CURL_MAX_HTTP_HEADER
  190. Introduced in 7.19.7
  191. .IP CURL_MAX_READ_SIZE
  192. Introduced in 7.53.0
  193. .IP CURL_MAX_WRITE_SIZE
  194. Introduced in 7.9.7
  195. .IP CURL_NETRC_IGNORED
  196. Introduced in 7.9.8
  197. .IP CURL_NETRC_OPTIONAL
  198. Introduced in 7.9.8
  199. .IP CURL_NETRC_REQUIRED
  200. Introduced in 7.9.8
  201. .IP CURL_POLL_IN
  202. Introduced in 7.14.0
  203. .IP CURL_POLL_INOUT
  204. Introduced in 7.14.0
  205. .IP CURL_POLL_NONE
  206. Introduced in 7.14.0
  207. .IP CURL_POLL_OUT
  208. Introduced in 7.14.0
  209. .IP CURL_POLL_REMOVE
  210. Introduced in 7.14.0
  211. .IP CURL_PREREQFUNC_ABORT
  212. Introduced in 7.79.0
  213. .IP CURL_PREREQFUNC_OK
  214. Introduced in 7.79.0
  215. .IP CURL_PROGRESS_BAR
  216. Introduced in 7.1.1
  217. .IP CURL_PROGRESS_STATS
  218. Introduced in 7.1.1
  219. .IP CURL_PROGRESSFUNC_CONTINUE
  220. Introduced in 7.68.0
  221. .IP CURL_PULL_SYS_POLL_H
  222. Introduced in 7.56.0
  223. .IP CURL_PUSH_DENY
  224. Introduced in 7.44.0
  225. .IP CURL_PUSH_ERROROUT
  226. Introduced in 7.72.0
  227. .IP CURL_PUSH_OK
  228. Introduced in 7.44.0
  229. .IP CURL_READFUNC_ABORT
  230. Introduced in 7.12.1
  231. .IP CURL_READFUNC_PAUSE
  232. Introduced in 7.18.0
  233. .IP CURL_REDIR_GET_ALL
  234. Introduced in 7.19.1
  235. .IP CURL_REDIR_POST_301
  236. Introduced in 7.19.1
  237. .IP CURL_REDIR_POST_302
  238. Introduced in 7.19.1
  239. .IP CURL_REDIR_POST_303
  240. Introduced in 7.25.1
  241. .IP CURL_REDIR_POST_ALL
  242. Introduced in 7.19.1
  243. .IP CURL_RTSPREQ_ANNOUNCE
  244. Introduced in 7.20.0
  245. .IP CURL_RTSPREQ_DESCRIBE
  246. Introduced in 7.20.0
  247. .IP CURL_RTSPREQ_GET_PARAMETER
  248. Introduced in 7.20.0
  249. .IP CURL_RTSPREQ_NONE
  250. Introduced in 7.20.0
  251. .IP CURL_RTSPREQ_OPTIONS
  252. Introduced in 7.20.0
  253. .IP CURL_RTSPREQ_PAUSE
  254. Introduced in 7.20.0
  255. .IP CURL_RTSPREQ_PLAY
  256. Introduced in 7.20.0
  257. .IP CURL_RTSPREQ_RECEIVE
  258. Introduced in 7.20.0
  259. .IP CURL_RTSPREQ_RECORD
  260. Introduced in 7.20.0
  261. .IP CURL_RTSPREQ_SET_PARAMETER
  262. Introduced in 7.20.0
  263. .IP CURL_RTSPREQ_SETUP
  264. Introduced in 7.20.0
  265. .IP CURL_RTSPREQ_TEARDOWN
  266. Introduced in 7.20.0
  267. .IP CURL_SEEKFUNC_CANTSEEK
  268. Introduced in 7.19.5
  269. .IP CURL_SEEKFUNC_FAIL
  270. Introduced in 7.19.5
  271. .IP CURL_SEEKFUNC_OK
  272. Introduced in 7.19.5
  273. .IP CURL_SOCKET_BAD
  274. Introduced in 7.14.0
  275. .IP CURL_SOCKET_TIMEOUT
  276. Introduced in 7.14.0
  277. .IP CURL_SOCKOPT_ALREADY_CONNECTED
  278. Introduced in 7.21.5
  279. .IP CURL_SOCKOPT_ERROR
  280. Introduced in 7.21.5
  281. .IP CURL_SOCKOPT_OK
  282. Introduced in 7.21.5
  283. .IP CURL_SSLVERSION_DEFAULT
  284. Introduced in 7.9.2
  285. .IP CURL_SSLVERSION_MAX_DEFAULT
  286. Introduced in 7.54.0
  287. .IP CURL_SSLVERSION_MAX_NONE
  288. Introduced in 7.54.0
  289. .IP CURL_SSLVERSION_MAX_TLSv1_0
  290. Introduced in 7.54.0
  291. .IP CURL_SSLVERSION_MAX_TLSv1_1
  292. Introduced in 7.54.0
  293. .IP CURL_SSLVERSION_MAX_TLSv1_2
  294. Introduced in 7.54.0
  295. .IP CURL_SSLVERSION_MAX_TLSv1_3
  296. Introduced in 7.54.0
  297. .IP CURL_SSLVERSION_SSLv2
  298. Introduced in 7.9.2
  299. .IP CURL_SSLVERSION_SSLv3
  300. Introduced in 7.9.2
  301. .IP CURL_SSLVERSION_TLSv1
  302. Introduced in 7.9.2
  303. .IP CURL_SSLVERSION_TLSv1_0
  304. Introduced in 7.34.0
  305. .IP CURL_SSLVERSION_TLSv1_1
  306. Introduced in 7.34.0
  307. .IP CURL_SSLVERSION_TLSv1_2
  308. Introduced in 7.34.0
  309. .IP CURL_SSLVERSION_TLSv1_3
  310. Introduced in 7.52.0
  311. .IP CURL_STRICTER
  312. Introduced in 7.50.2
  313. .IP CURL_TIMECOND_IFMODSINCE
  314. Introduced in 7.9.7
  315. .IP CURL_TIMECOND_IFUNMODSINCE
  316. Introduced in 7.9.7
  317. .IP CURL_TIMECOND_LASTMOD
  318. Introduced in 7.9.7
  319. .IP CURL_TIMECOND_NONE
  320. Introduced in 7.9.7
  321. .IP CURL_TLSAUTH_NONE
  322. Introduced in 7.21.4
  323. .IP CURL_TLSAUTH_SRP
  324. Introduced in 7.21.4
  325. .IP CURL_TRAILERFUNC_ABORT
  326. Introduced in 7.64.0
  327. .IP CURL_TRAILERFUNC_OK
  328. Introduced in 7.64.0
  329. .IP CURL_UPKEEP_INTERVAL_DEFAULT
  330. Introduced in 7.62.0
  331. .IP CURL_VERSION_ALTSVC
  332. Introduced in 7.64.1
  333. .IP CURL_VERSION_ASYNCHDNS
  334. Introduced in 7.10.7
  335. .IP CURL_VERSION_BITS
  336. Introduced in 7.43.0
  337. .IP CURL_VERSION_BROTLI
  338. Introduced in 7.57.0
  339. .IP CURL_VERSION_CONV
  340. Introduced in 7.15.4
  341. .IP CURL_VERSION_CURLDEBUG
  342. Introduced in 7.19.6
  343. .IP CURL_VERSION_DEBUG
  344. Introduced in 7.10.6
  345. .IP CURL_VERSION_GSASL
  346. Introduced in 7.76.0
  347. .IP CURL_VERSION_GSSAPI
  348. Introduced in 7.38.0
  349. .IP CURL_VERSION_GSSNEGOTIATE
  350. Introduced in 7.10.6
  351. Deprecated since 7.38.0
  352. .IP CURL_VERSION_HSTS
  353. Introduced in 7.74.0
  354. .IP CURL_VERSION_HTTP2
  355. Introduced in 7.33.0
  356. .IP CURL_VERSION_HTTP3
  357. Introduced in 7.66.0
  358. .IP CURL_VERSION_HTTPS_PROXY
  359. Introduced in 7.52.0
  360. .IP CURL_VERSION_IDN
  361. Introduced in 7.12.0
  362. .IP CURL_VERSION_IPV6
  363. Introduced in 7.10
  364. .IP CURL_VERSION_KERBEROS4
  365. Introduced in 7.10
  366. Deprecated since 7.33.0
  367. .IP CURL_VERSION_KERBEROS5
  368. Introduced in 7.40.0
  369. .IP CURL_VERSION_LARGEFILE
  370. Introduced in 7.11.1
  371. .IP CURL_VERSION_LIBZ
  372. Introduced in 7.10
  373. .IP CURL_VERSION_MULTI_SSL
  374. Introduced in 7.56.0
  375. .IP CURL_VERSION_NTLM
  376. Introduced in 7.10.6
  377. .IP CURL_VERSION_NTLM_WB
  378. Introduced in 7.22.0
  379. .IP CURL_VERSION_PSL
  380. Introduced in 7.47.0
  381. .IP CURL_VERSION_SPNEGO
  382. Introduced in 7.10.8
  383. .IP CURL_VERSION_SSL
  384. Introduced in 7.10
  385. .IP CURL_VERSION_SSPI
  386. Introduced in 7.13.2
  387. .IP CURL_VERSION_THREADSAFE
  388. Introduced in 7.84.0
  389. .IP CURL_VERSION_TLSAUTH_SRP
  390. Introduced in 7.21.4
  391. .IP CURL_VERSION_UNICODE
  392. Introduced in 7.72.0
  393. .IP CURL_VERSION_UNIX_SOCKETS
  394. Introduced in 7.40.0
  395. .IP CURL_VERSION_ZSTD
  396. Introduced in 7.72.0
  397. .IP CURL_WAIT_POLLIN
  398. Introduced in 7.28.0
  399. .IP CURL_WAIT_POLLOUT
  400. Introduced in 7.28.0
  401. .IP CURL_WAIT_POLLPRI
  402. Introduced in 7.28.0
  403. .IP CURL_WIN32
  404. Introduced in 7.69.0
  405. .IP CURL_WRITEFUNC_ERROR
  406. Introduced in 7.87.0
  407. .IP CURL_WRITEFUNC_PAUSE
  408. Introduced in 7.18.0
  409. .IP CURL_ZERO_TERMINATED
  410. Introduced in 7.56.0
  411. .IP CURLALTSVC_H1
  412. Introduced in 7.64.1
  413. .IP CURLALTSVC_H2
  414. Introduced in 7.64.1
  415. .IP CURLALTSVC_H3
  416. Introduced in 7.64.1
  417. .IP CURLALTSVC_READONLYFILE
  418. Introduced in 7.64.1
  419. .IP CURLAUTH_ANY
  420. Introduced in 7.10.6
  421. .IP CURLAUTH_ANYSAFE
  422. Introduced in 7.10.6
  423. .IP CURLAUTH_AWS_SIGV4
  424. Introduced in 7.75.0
  425. .IP CURLAUTH_BASIC
  426. Introduced in 7.10.6
  427. .IP CURLAUTH_BEARER
  428. Introduced in 7.61.0
  429. .IP CURLAUTH_DIGEST
  430. Introduced in 7.10.6
  431. .IP CURLAUTH_DIGEST_IE
  432. Introduced in 7.19.3
  433. .IP CURLAUTH_GSSAPI
  434. Introduced in 7.55.0
  435. .IP CURLAUTH_GSSNEGOTIATE
  436. Introduced in 7.10.6
  437. Deprecated since 7.38.0
  438. .IP CURLAUTH_NEGOTIATE
  439. Introduced in 7.38.0
  440. .IP CURLAUTH_NONE
  441. Introduced in 7.10.6
  442. .IP CURLAUTH_NTLM
  443. Introduced in 7.10.6
  444. .IP CURLAUTH_NTLM_WB
  445. Introduced in 7.22.0
  446. .IP CURLAUTH_ONLY
  447. Introduced in 7.21.3
  448. .IP CURLCLOSEPOLICY_CALLBACK
  449. Introduced in 7.7
  450. .IP CURLCLOSEPOLICY_LEAST_RECENTLY_USED
  451. Introduced in 7.7
  452. .IP CURLCLOSEPOLICY_LEAST_TRAFFIC
  453. Introduced in 7.7
  454. .IP CURLCLOSEPOLICY_NONE
  455. Introduced in 7.7
  456. .IP CURLCLOSEPOLICY_OLDEST
  457. Introduced in 7.7
  458. .IP CURLCLOSEPOLICY_SLOWEST
  459. Introduced in 7.7
  460. .IP CURLE_ABORTED_BY_CALLBACK
  461. Introduced in 7.1
  462. .IP CURLE_AGAIN
  463. Introduced in 7.18.2
  464. .IP CURLE_ALREADY_COMPLETE
  465. Introduced in 7.7.2
  466. Deprecated since 7.8
  467. .IP CURLE_AUTH_ERROR
  468. Introduced in 7.66.0
  469. .IP CURLE_BAD_CALLING_ORDER
  470. Introduced in 7.1
  471. Deprecated since 7.17.0
  472. .IP CURLE_BAD_CONTENT_ENCODING
  473. Introduced in 7.10
  474. .IP CURLE_BAD_DOWNLOAD_RESUME
  475. Introduced in 7.10
  476. .IP CURLE_BAD_FUNCTION_ARGUMENT
  477. Introduced in 7.1
  478. .IP CURLE_BAD_PASSWORD_ENTERED
  479. Introduced in 7.4.2
  480. Deprecated since 7.17.0
  481. .IP CURLE_CHUNK_FAILED
  482. Introduced in 7.21.0
  483. .IP CURLE_CONV_FAILED
  484. Introduced in 7.15.4
  485. Deprecated since 7.82.0
  486. .IP CURLE_CONV_REQD
  487. Introduced in 7.15.4
  488. Deprecated since 7.82.0
  489. .IP CURLE_COULDNT_CONNECT
  490. Introduced in 7.1
  491. .IP CURLE_COULDNT_RESOLVE_HOST
  492. Introduced in 7.1
  493. .IP CURLE_COULDNT_RESOLVE_PROXY
  494. Introduced in 7.1
  495. .IP CURLE_FAILED_INIT
  496. Introduced in 7.1
  497. .IP CURLE_FILE_COULDNT_READ_FILE
  498. Introduced in 7.1
  499. .IP CURLE_FILESIZE_EXCEEDED
  500. Introduced in 7.10.8
  501. .IP CURLE_FTP_ACCEPT_FAILED
  502. Introduced in 7.24.0
  503. .IP CURLE_FTP_ACCEPT_TIMEOUT
  504. Introduced in 7.24.0
  505. .IP CURLE_FTP_ACCESS_DENIED
  506. Introduced in 7.1
  507. Deprecated since 7.17.0
  508. .IP CURLE_FTP_BAD_DOWNLOAD_RESUME
  509. Introduced in 7.1
  510. Deprecated since 7.1
  511. .IP CURLE_FTP_BAD_FILE_LIST
  512. Introduced in 7.21.0
  513. .IP CURLE_FTP_CANT_GET_HOST
  514. Introduced in 7.1
  515. .IP CURLE_FTP_CANT_RECONNECT
  516. Introduced in 7.1
  517. Deprecated since 7.17.0
  518. .IP CURLE_FTP_COULDNT_GET_SIZE
  519. Introduced in 7.1
  520. Deprecated since 7.17.0
  521. .IP CURLE_FTP_COULDNT_RETR_FILE
  522. Introduced in 7.1
  523. .IP CURLE_FTP_COULDNT_SET_ASCII
  524. Introduced in 7.1
  525. Deprecated since 7.17.0
  526. .IP CURLE_FTP_COULDNT_SET_BINARY
  527. Introduced in 7.1
  528. Deprecated since 7.17.0
  529. .IP CURLE_FTP_COULDNT_SET_TYPE
  530. Introduced in 7.17.0
  531. .IP CURLE_FTP_COULDNT_STOR_FILE
  532. Introduced in 7.1
  533. Deprecated since 7.16.3
  534. .IP CURLE_FTP_COULDNT_USE_REST
  535. Introduced in 7.1
  536. .IP CURLE_FTP_PARTIAL_FILE
  537. Introduced in 7.1
  538. Deprecated since 7.1
  539. .IP CURLE_FTP_PORT_FAILED
  540. Introduced in 7.1
  541. .IP CURLE_FTP_PRET_FAILED
  542. Introduced in 7.20.0
  543. .IP CURLE_FTP_QUOTE_ERROR
  544. Introduced in 7.1
  545. Deprecated since 7.17.0
  546. .IP CURLE_FTP_SSL_FAILED
  547. Introduced in 7.11.0
  548. Deprecated since 7.17.0
  549. .IP CURLE_FTP_USER_PASSWORD_INCORRECT
  550. Introduced in 7.1
  551. Deprecated since 7.17.0
  552. .IP CURLE_FTP_WEIRD_227_FORMAT
  553. Introduced in 7.1
  554. .IP CURLE_FTP_WEIRD_PASS_REPLY
  555. Introduced in 7.1
  556. .IP CURLE_FTP_WEIRD_PASV_REPLY
  557. Introduced in 7.1
  558. .IP CURLE_FTP_WEIRD_SERVER_REPLY
  559. Introduced in 7.1
  560. Deprecated since 7.51.0
  561. .IP CURLE_FTP_WEIRD_USER_REPLY
  562. Introduced in 7.1
  563. Deprecated since 7.17.0
  564. .IP CURLE_FTP_WRITE_ERROR
  565. Introduced in 7.1
  566. Deprecated since 7.17.0
  567. .IP CURLE_FUNCTION_NOT_FOUND
  568. Introduced in 7.1
  569. .IP CURLE_GOT_NOTHING
  570. Introduced in 7.9.1
  571. .IP CURLE_HTTP2
  572. Introduced in 7.38.0
  573. .IP CURLE_HTTP2_STREAM
  574. Introduced in 7.49.0
  575. .IP CURLE_HTTP3
  576. Introduced in 7.68.0
  577. .IP CURLE_HTTP_NOT_FOUND
  578. Introduced in 7.1
  579. Deprecated since 7.10.3
  580. .IP CURLE_HTTP_PORT_FAILED
  581. Introduced in 7.3
  582. Deprecated since 7.12.0
  583. .IP CURLE_HTTP_POST_ERROR
  584. Introduced in 7.1
  585. .IP CURLE_HTTP_RANGE_ERROR
  586. Introduced in 7.1
  587. Deprecated since 7.17.0
  588. .IP CURLE_HTTP_RETURNED_ERROR
  589. Introduced in 7.10.3
  590. .IP CURLE_INTERFACE_FAILED
  591. Introduced in 7.12.0
  592. .IP CURLE_LDAP_CANNOT_BIND
  593. Introduced in 7.1
  594. .IP CURLE_LDAP_INVALID_URL
  595. Introduced in 7.10.8
  596. Deprecated since 7.82.0
  597. .IP CURLE_LDAP_SEARCH_FAILED
  598. Introduced in 7.1
  599. .IP CURLE_LIBRARY_NOT_FOUND
  600. Introduced in 7.1
  601. Deprecated since 7.17.0
  602. .IP CURLE_LOGIN_DENIED
  603. Introduced in 7.13.1
  604. .IP CURLE_MALFORMAT_USER
  605. Introduced in 7.1
  606. Deprecated since 7.17.0
  607. .IP CURLE_NO_CONNECTION_AVAILABLE
  608. Introduced in 7.30.0
  609. .IP CURLE_NOT_BUILT_IN
  610. Introduced in 7.21.5
  611. .IP CURLE_OK
  612. Introduced in 7.1
  613. .IP CURLE_OPERATION_TIMEDOUT
  614. Introduced in 7.10.2
  615. .IP CURLE_OPERATION_TIMEOUTED
  616. Introduced in 7.1
  617. Deprecated since 7.17.0
  618. .IP CURLE_OUT_OF_MEMORY
  619. Introduced in 7.1
  620. .IP CURLE_PARTIAL_FILE
  621. Introduced in 7.1
  622. .IP CURLE_PEER_FAILED_VERIFICATION
  623. Introduced in 7.17.1
  624. .IP CURLE_PROXY
  625. Introduced in 7.73.0
  626. .IP CURLE_QUIC_CONNECT_ERROR
  627. Introduced in 7.69.0
  628. .IP CURLE_QUOTE_ERROR
  629. Introduced in 7.17.0
  630. .IP CURLE_RANGE_ERROR
  631. Introduced in 7.17.0
  632. .IP CURLE_READ_ERROR
  633. Introduced in 7.1
  634. .IP CURLE_RECURSIVE_API_CALL
  635. Introduced in 7.59.0
  636. .IP CURLE_RECV_ERROR
  637. Introduced in 7.10
  638. .IP CURLE_REMOTE_ACCESS_DENIED
  639. Introduced in 7.17.0
  640. .IP CURLE_REMOTE_DISK_FULL
  641. Introduced in 7.17.0
  642. .IP CURLE_REMOTE_FILE_EXISTS
  643. Introduced in 7.17.0
  644. .IP CURLE_REMOTE_FILE_NOT_FOUND
  645. Introduced in 7.16.1
  646. .IP CURLE_RTSP_CSEQ_ERROR
  647. Introduced in 7.20.0
  648. .IP CURLE_RTSP_SESSION_ERROR
  649. Introduced in 7.20.0
  650. .IP CURLE_SEND_ERROR
  651. Introduced in 7.10
  652. .IP CURLE_SEND_FAIL_REWIND
  653. Introduced in 7.12.3
  654. .IP CURLE_SETOPT_OPTION_SYNTAX
  655. Introduced in 7.78.0
  656. .IP CURLE_SHARE_IN_USE
  657. Introduced in 7.9.6
  658. Deprecated since 7.17.0
  659. .IP CURLE_SSH
  660. Introduced in 7.16.1
  661. .IP CURLE_SSL_CACERT
  662. Introduced in 7.10
  663. Deprecated since 7.62.0
  664. .IP CURLE_SSL_CACERT_BADFILE
  665. Introduced in 7.16.0
  666. .IP CURLE_SSL_CERTPROBLEM
  667. Introduced in 7.10
  668. .IP CURLE_SSL_CIPHER
  669. Introduced in 7.10
  670. .IP CURLE_SSL_CLIENTCERT
  671. Introduced in 7.77.0
  672. .IP CURLE_SSL_CONNECT_ERROR
  673. Introduced in 7.1
  674. .IP CURLE_SSL_CRL_BADFILE
  675. Introduced in 7.19.0
  676. .IP CURLE_SSL_ENGINE_INITFAILED
  677. Introduced in 7.12.3
  678. .IP CURLE_SSL_ENGINE_NOTFOUND
  679. Introduced in 7.9.3
  680. .IP CURLE_SSL_ENGINE_SETFAILED
  681. Introduced in 7.9.3
  682. .IP CURLE_SSL_INVALIDCERTSTATUS
  683. Introduced in 7.41.0
  684. .IP CURLE_SSL_ISSUER_ERROR
  685. Introduced in 7.19.0
  686. .IP CURLE_SSL_PEER_CERTIFICATE
  687. Introduced in 7.8
  688. Deprecated since 7.17.1
  689. .IP CURLE_SSL_PINNEDPUBKEYNOTMATCH
  690. Introduced in 7.39.0
  691. .IP CURLE_SSL_SHUTDOWN_FAILED
  692. Introduced in 7.16.1
  693. .IP CURLE_TELNET_OPTION_SYNTAX
  694. Introduced in 7.7
  695. .IP CURLE_TFTP_DISKFULL
  696. Introduced in 7.15.0
  697. Deprecated since 7.17.0
  698. .IP CURLE_TFTP_EXISTS
  699. Introduced in 7.15.0
  700. Deprecated since 7.17.0
  701. .IP CURLE_TFTP_ILLEGAL
  702. Introduced in 7.15.0
  703. .IP CURLE_TFTP_NOSUCHUSER
  704. Introduced in 7.15.0
  705. .IP CURLE_TFTP_NOTFOUND
  706. Introduced in 7.15.0
  707. .IP CURLE_TFTP_PERM
  708. Introduced in 7.15.0
  709. .IP CURLE_TFTP_UNKNOWNID
  710. Introduced in 7.15.0
  711. .IP CURLE_TOO_MANY_REDIRECTS
  712. Introduced in 7.5
  713. .IP CURLE_UNKNOWN_OPTION
  714. Introduced in 7.21.5
  715. .IP CURLE_UNKNOWN_TELNET_OPTION
  716. Introduced in 7.7
  717. Deprecated since 7.21.5
  718. .IP CURLE_UNRECOVERABLE_POLL
  719. Introduced in 7.84.0
  720. .IP CURLE_UNSUPPORTED_PROTOCOL
  721. Introduced in 7.1
  722. .IP CURLE_UPLOAD_FAILED
  723. Introduced in 7.16.3
  724. .IP CURLE_URL_MALFORMAT
  725. Introduced in 7.1
  726. .IP CURLE_URL_MALFORMAT_USER
  727. Introduced in 7.1
  728. Deprecated since 7.17.0
  729. .IP CURLE_USE_SSL_FAILED
  730. Introduced in 7.17.0
  731. .IP CURLE_WEIRD_SERVER_REPLY
  732. Introduced in 7.51.0
  733. .IP CURLE_WRITE_ERROR
  734. Introduced in 7.1
  735. .IP CURLFILETYPE_DEVICE_BLOCK
  736. Introduced in 7.21.0
  737. .IP CURLFILETYPE_DEVICE_CHAR
  738. Introduced in 7.21.0
  739. .IP CURLFILETYPE_DIRECTORY
  740. Introduced in 7.21.0
  741. .IP CURLFILETYPE_DOOR
  742. Introduced in 7.21.0
  743. .IP CURLFILETYPE_FILE
  744. Introduced in 7.21.0
  745. .IP CURLFILETYPE_NAMEDPIPE
  746. Introduced in 7.21.0
  747. .IP CURLFILETYPE_SOCKET
  748. Introduced in 7.21.0
  749. .IP CURLFILETYPE_SYMLINK
  750. Introduced in 7.21.0
  751. .IP CURLFILETYPE_UNKNOWN
  752. Introduced in 7.21.0
  753. .IP CURLFINFOFLAG_KNOWN_FILENAME
  754. Introduced in 7.21.0
  755. .IP CURLFINFOFLAG_KNOWN_FILETYPE
  756. Introduced in 7.21.0
  757. .IP CURLFINFOFLAG_KNOWN_GID
  758. Introduced in 7.21.0
  759. .IP CURLFINFOFLAG_KNOWN_HLINKCOUNT
  760. Introduced in 7.21.0
  761. .IP CURLFINFOFLAG_KNOWN_PERM
  762. Introduced in 7.21.0
  763. .IP CURLFINFOFLAG_KNOWN_SIZE
  764. Introduced in 7.21.0
  765. .IP CURLFINFOFLAG_KNOWN_TIME
  766. Introduced in 7.21.0
  767. .IP CURLFINFOFLAG_KNOWN_UID
  768. Introduced in 7.21.0
  769. .IP CURLFORM_ARRAY
  770. Introduced in 7.9.1
  771. Deprecated since 7.56.0
  772. .IP CURLFORM_ARRAY_END
  773. Introduced in 7.9.1
  774. Deprecated since 7.9.5
  775. Last used in 7.9.6
  776. .IP CURLFORM_ARRAY_START
  777. Introduced in 7.9.1
  778. Deprecated since 7.9.5
  779. Last used in 7.9.6
  780. .IP CURLFORM_BUFFER
  781. Introduced in 7.9.8
  782. Deprecated since 7.56.0
  783. .IP CURLFORM_BUFFERLENGTH
  784. Introduced in 7.9.8
  785. Deprecated since 7.56.0
  786. .IP CURLFORM_BUFFERPTR
  787. Introduced in 7.9.8
  788. Deprecated since 7.56.0
  789. .IP CURLFORM_CONTENTHEADER
  790. Introduced in 7.9.3
  791. Deprecated since 7.56.0
  792. .IP CURLFORM_CONTENTLEN
  793. Introduced in 7.46.0
  794. Deprecated since 7.56.0
  795. .IP CURLFORM_CONTENTSLENGTH
  796. Introduced in 7.9
  797. Deprecated since 7.56.0
  798. .IP CURLFORM_CONTENTTYPE
  799. Introduced in 7.9
  800. Deprecated since 7.56.0
  801. .IP CURLFORM_COPYCONTENTS
  802. Introduced in 7.9
  803. Deprecated since 7.56.0
  804. .IP CURLFORM_COPYNAME
  805. Introduced in 7.9
  806. Deprecated since 7.56.0
  807. .IP CURLFORM_END
  808. Introduced in 7.9
  809. Deprecated since 7.56.0
  810. .IP CURLFORM_FILE
  811. Introduced in 7.9
  812. Deprecated since 7.56.0
  813. .IP CURLFORM_FILECONTENT
  814. Introduced in 7.9.1
  815. Deprecated since 7.56.0
  816. .IP CURLFORM_FILENAME
  817. Introduced in 7.9.6
  818. Deprecated since 7.56.0
  819. .IP CURLFORM_NAMELENGTH
  820. Introduced in 7.9
  821. Deprecated since 7.56.0
  822. .IP CURLFORM_NOTHING
  823. Introduced in 7.9
  824. Deprecated since 7.56.0
  825. .IP CURLFORM_PTRCONTENTS
  826. Introduced in 7.9
  827. Deprecated since 7.56.0
  828. .IP CURLFORM_PTRNAME
  829. Introduced in 7.9
  830. Deprecated since 7.56.0
  831. .IP CURLFORM_STREAM
  832. Introduced in 7.18.2
  833. Deprecated since 7.56.0
  834. .IP CURLFTP_CREATE_DIR
  835. Introduced in 7.19.4
  836. .IP CURLFTP_CREATE_DIR_NONE
  837. Introduced in 7.19.4
  838. .IP CURLFTP_CREATE_DIR_RETRY
  839. Introduced in 7.19.4
  840. .IP CURLFTPAUTH_DEFAULT
  841. Introduced in 7.12.2
  842. .IP CURLFTPAUTH_SSL
  843. Introduced in 7.12.2
  844. .IP CURLFTPAUTH_TLS
  845. Introduced in 7.12.2
  846. .IP CURLFTPMETHOD_DEFAULT
  847. Introduced in 7.15.3
  848. .IP CURLFTPMETHOD_MULTICWD
  849. Introduced in 7.15.3
  850. .IP CURLFTPMETHOD_NOCWD
  851. Introduced in 7.15.3
  852. .IP CURLFTPMETHOD_SINGLECWD
  853. Introduced in 7.15.3
  854. .IP CURLFTPSSL_ALL
  855. Introduced in 7.11.0
  856. Deprecated since 7.17.0
  857. .IP CURLFTPSSL_CCC_ACTIVE
  858. Introduced in 7.16.2
  859. .IP CURLFTPSSL_CCC_NONE
  860. Introduced in 7.16.2
  861. .IP CURLFTPSSL_CCC_PASSIVE
  862. Introduced in 7.16.1
  863. .IP CURLFTPSSL_CONTROL
  864. Introduced in 7.11.0
  865. Deprecated since 7.17.0
  866. .IP CURLFTPSSL_NONE
  867. Introduced in 7.11.0
  868. Deprecated since 7.17.0
  869. .IP CURLFTPSSL_TRY
  870. Introduced in 7.11.0
  871. Deprecated since 7.17.0
  872. .IP CURLGSSAPI_DELEGATION_FLAG
  873. Introduced in 7.22.0
  874. .IP CURLGSSAPI_DELEGATION_NONE
  875. Introduced in 7.22.0
  876. .IP CURLGSSAPI_DELEGATION_POLICY_FLAG
  877. Introduced in 7.22.0
  878. .IP CURLH_1XX
  879. Introduced in 7.83.0
  880. .IP CURLH_CONNECT
  881. Introduced in 7.83.0
  882. .IP CURLH_HEADER
  883. Introduced in 7.83.0
  884. .IP CURLH_PSEUDO
  885. Introduced in 7.83.0
  886. .IP CURLH_TRAILER
  887. Introduced in 7.83.0
  888. .IP CURLHE_BAD_ARGUMENT
  889. Introduced in 7.83.0
  890. .IP CURLHE_BADINDEX
  891. Introduced in 7.83.0
  892. .IP CURLHE_MISSING
  893. Introduced in 7.83.0
  894. .IP CURLHE_NOHEADERS
  895. Introduced in 7.83.0
  896. .IP CURLHE_NOREQUEST
  897. Introduced in 7.83.0
  898. .IP CURLHE_NOT_BUILT_IN
  899. Introduced in 7.83.0
  900. .IP CURLHE_OK
  901. Introduced in 7.83.0
  902. .IP CURLHE_OUT_OF_MEMORY
  903. Introduced in 7.83.0
  904. .IP CURLHEADER_SEPARATE
  905. Introduced in 7.37.0
  906. .IP CURLHEADER_UNIFIED
  907. Introduced in 7.37.0
  908. .IP CURLHSTS_ENABLE
  909. Introduced in 7.74.0
  910. .IP CURLHSTS_READONLYFILE
  911. Introduced in 7.74.0
  912. .IP CURLINFO_ACTIVESOCKET
  913. Introduced in 7.45.0
  914. .IP CURLINFO_APPCONNECT_TIME
  915. Introduced in 7.19.0
  916. .IP CURLINFO_APPCONNECT_TIME_T
  917. Introduced in 7.61.0
  918. .IP CURLINFO_CAINFO
  919. Introduced in 7.84.0
  920. .IP CURLINFO_CAPATH
  921. Introduced in 7.84.0
  922. .IP CURLINFO_CERTINFO
  923. Introduced in 7.19.1
  924. .IP CURLINFO_CONDITION_UNMET
  925. Introduced in 7.19.4
  926. .IP CURLINFO_CONNECT_TIME
  927. Introduced in 7.4.1
  928. .IP CURLINFO_CONNECT_TIME_T
  929. Introduced in 7.61.0
  930. .IP CURLINFO_CONTENT_LENGTH_DOWNLOAD
  931. Introduced in 7.6.1
  932. Deprecated since 7.55.0
  933. .IP CURLINFO_CONTENT_LENGTH_DOWNLOAD_T
  934. Introduced in 7.55.0
  935. .IP CURLINFO_CONTENT_LENGTH_UPLOAD
  936. Introduced in 7.6.1
  937. Deprecated since 7.55.0
  938. .IP CURLINFO_CONTENT_LENGTH_UPLOAD_T
  939. Introduced in 7.55.0
  940. .IP CURLINFO_CONTENT_TYPE
  941. Introduced in 7.9.4
  942. .IP CURLINFO_COOKIELIST
  943. Introduced in 7.14.1
  944. .IP CURLINFO_DATA_IN
  945. Introduced in 7.9.6
  946. .IP CURLINFO_DATA_OUT
  947. Introduced in 7.9.6
  948. .IP CURLINFO_DOUBLE
  949. Introduced in 7.4.1
  950. .IP CURLINFO_EFFECTIVE_METHOD
  951. Introduced in 7.72.0
  952. .IP CURLINFO_EFFECTIVE_URL
  953. Introduced in 7.4
  954. .IP CURLINFO_END
  955. Introduced in 7.9.6
  956. .IP CURLINFO_FILETIME
  957. Introduced in 7.5
  958. .IP CURLINFO_FILETIME_T
  959. Introduced in 7.59.0
  960. .IP CURLINFO_FTP_ENTRY_PATH
  961. Introduced in 7.15.4
  962. .IP CURLINFO_HEADER_IN
  963. Introduced in 7.9.6
  964. .IP CURLINFO_HEADER_OUT
  965. Introduced in 7.9.6
  966. .IP CURLINFO_HEADER_SIZE
  967. Introduced in 7.4.1
  968. .IP CURLINFO_HTTP_CODE
  969. Introduced in 7.4.1
  970. Deprecated since 7.10.8
  971. .IP CURLINFO_HTTP_CONNECTCODE
  972. Introduced in 7.10.7
  973. .IP CURLINFO_HTTP_VERSION
  974. Introduced in 7.50.0
  975. .IP CURLINFO_HTTPAUTH_AVAIL
  976. Introduced in 7.10.8
  977. .IP CURLINFO_LASTONE
  978. Introduced in 7.4.1
  979. .IP CURLINFO_LASTSOCKET
  980. Introduced in 7.15.2
  981. Deprecated since 7.45.0
  982. .IP CURLINFO_LOCAL_IP
  983. Introduced in 7.21.0
  984. .IP CURLINFO_LOCAL_PORT
  985. Introduced in 7.21.0
  986. .IP CURLINFO_LONG
  987. Introduced in 7.4.1
  988. .IP CURLINFO_MASK
  989. Introduced in 7.4.1
  990. .IP CURLINFO_NAMELOOKUP_TIME
  991. Introduced in 7.4.1
  992. .IP CURLINFO_NAMELOOKUP_TIME_T
  993. Introduced in 7.61.0
  994. .IP CURLINFO_NONE
  995. Introduced in 7.4.1
  996. .IP CURLINFO_NUM_CONNECTS
  997. Introduced in 7.12.3
  998. .IP CURLINFO_OFF_T
  999. Introduced in 7.55.0
  1000. .IP CURLINFO_OS_ERRNO
  1001. Introduced in 7.12.2
  1002. .IP CURLINFO_PRETRANSFER_TIME
  1003. Introduced in 7.4.1
  1004. .IP CURLINFO_PRETRANSFER_TIME_T
  1005. Introduced in 7.61.0
  1006. .IP CURLINFO_PRIMARY_IP
  1007. Introduced in 7.19.0
  1008. .IP CURLINFO_PRIMARY_PORT
  1009. Introduced in 7.21.0
  1010. .IP CURLINFO_PRIVATE
  1011. Introduced in 7.10.3
  1012. .IP CURLINFO_PROTOCOL
  1013. Introduced in 7.52.0
  1014. Deprecated since 7.85.0
  1015. .IP CURLINFO_PROXY_ERROR
  1016. Introduced in 7.73.0
  1017. .IP CURLINFO_PROXY_SSL_VERIFYRESULT
  1018. Introduced in 7.52.0
  1019. .IP CURLINFO_PROXYAUTH_AVAIL
  1020. Introduced in 7.10.8
  1021. .IP CURLINFO_PTR
  1022. Introduced in 7.54.1
  1023. .IP CURLINFO_REDIRECT_COUNT
  1024. Introduced in 7.9.7
  1025. .IP CURLINFO_REDIRECT_TIME
  1026. Introduced in 7.9.7
  1027. .IP CURLINFO_REDIRECT_TIME_T
  1028. Introduced in 7.61.0
  1029. .IP CURLINFO_REDIRECT_URL
  1030. Introduced in 7.18.2
  1031. .IP CURLINFO_REFERER
  1032. Introduced in 7.76.0
  1033. .IP CURLINFO_REQUEST_SIZE
  1034. Introduced in 7.4.1
  1035. .IP CURLINFO_RESPONSE_CODE
  1036. Introduced in 7.10.8
  1037. .IP CURLINFO_RETRY_AFTER
  1038. Introduced in 7.66.0
  1039. .IP CURLINFO_RTSP_CLIENT_CSEQ
  1040. Introduced in 7.20.0
  1041. .IP CURLINFO_RTSP_CSEQ_RECV
  1042. Introduced in 7.20.0
  1043. .IP CURLINFO_RTSP_SERVER_CSEQ
  1044. Introduced in 7.20.0
  1045. .IP CURLINFO_RTSP_SESSION_ID
  1046. Introduced in 7.20.0
  1047. .IP CURLINFO_SCHEME
  1048. Introduced in 7.52.0
  1049. .IP CURLINFO_SIZE_DOWNLOAD
  1050. Introduced in 7.4.1
  1051. Deprecated since 7.55.0
  1052. .IP CURLINFO_SIZE_DOWNLOAD_T
  1053. Introduced in 7.55.0
  1054. .IP CURLINFO_SIZE_UPLOAD
  1055. Introduced in 7.4.1
  1056. Deprecated since 7.55.0
  1057. .IP CURLINFO_SIZE_UPLOAD_T
  1058. Introduced in 7.55.0
  1059. .IP CURLINFO_SLIST
  1060. Introduced in 7.12.3
  1061. .IP CURLINFO_SOCKET
  1062. Introduced in 7.45.0
  1063. .IP CURLINFO_SPEED_DOWNLOAD
  1064. Introduced in 7.4.1
  1065. Deprecated since 7.55.0
  1066. .IP CURLINFO_SPEED_DOWNLOAD_T
  1067. Introduced in 7.55.0
  1068. .IP CURLINFO_SPEED_UPLOAD
  1069. Introduced in 7.4.1
  1070. Deprecated since 7.55.0
  1071. .IP CURLINFO_SPEED_UPLOAD_T
  1072. Introduced in 7.55.0
  1073. .IP CURLINFO_SSL_DATA_IN
  1074. Introduced in 7.12.1
  1075. .IP CURLINFO_SSL_DATA_OUT
  1076. Introduced in 7.12.1
  1077. .IP CURLINFO_SSL_ENGINES
  1078. Introduced in 7.12.3
  1079. .IP CURLINFO_SSL_VERIFYRESULT
  1080. Introduced in 7.5
  1081. .IP CURLINFO_STARTTRANSFER_TIME
  1082. Introduced in 7.9.2
  1083. .IP CURLINFO_STARTTRANSFER_TIME_T
  1084. Introduced in 7.61.0
  1085. .IP CURLINFO_STRING
  1086. Introduced in 7.4.1
  1087. .IP CURLINFO_TEXT
  1088. Introduced in 7.9.6
  1089. .IP CURLINFO_TLS_SESSION
  1090. Introduced in 7.34.0
  1091. Deprecated since 7.48.0
  1092. .IP CURLINFO_TLS_SSL_PTR
  1093. Introduced in 7.48.0
  1094. .IP CURLINFO_TOTAL_TIME
  1095. Introduced in 7.4.1
  1096. .IP CURLINFO_TOTAL_TIME_T
  1097. Introduced in 7.61.0
  1098. .IP CURLINFO_TYPEMASK
  1099. Introduced in 7.4.1
  1100. .IP CURLIOCMD_NOP
  1101. Introduced in 7.12.3
  1102. .IP CURLIOCMD_RESTARTREAD
  1103. Introduced in 7.12.3
  1104. .IP CURLIOE_FAILRESTART
  1105. Introduced in 7.12.3
  1106. .IP CURLIOE_OK
  1107. Introduced in 7.12.3
  1108. .IP CURLIOE_UNKNOWNCMD
  1109. Introduced in 7.12.3
  1110. .IP CURLKHMATCH_MISMATCH
  1111. Introduced in 7.19.6
  1112. .IP CURLKHMATCH_MISSING
  1113. Introduced in 7.19.6
  1114. .IP CURLKHMATCH_OK
  1115. Introduced in 7.19.6
  1116. .IP CURLKHSTAT_DEFER
  1117. Introduced in 7.19.6
  1118. .IP CURLKHSTAT_FINE
  1119. Introduced in 7.19.6
  1120. .IP CURLKHSTAT_FINE_ADD_TO_FILE
  1121. Introduced in 7.19.6
  1122. .IP CURLKHSTAT_FINE_REPLACE
  1123. Introduced in 7.73.0
  1124. .IP CURLKHSTAT_REJECT
  1125. Introduced in 7.19.6
  1126. .IP CURLKHTYPE_DSS
  1127. Introduced in 7.19.6
  1128. .IP CURLKHTYPE_ECDSA
  1129. Introduced in 7.58.0
  1130. .IP CURLKHTYPE_ED25519
  1131. Introduced in 7.58.0
  1132. .IP CURLKHTYPE_RSA
  1133. Introduced in 7.19.6
  1134. .IP CURLKHTYPE_RSA1
  1135. Introduced in 7.19.6
  1136. .IP CURLKHTYPE_UNKNOWN
  1137. Introduced in 7.19.6
  1138. .IP CURLM_ABORTED_BY_CALLBACK
  1139. Introduced in 7.81.0
  1140. .IP CURLM_ADDED_ALREADY
  1141. Introduced in 7.32.1
  1142. .IP CURLM_BAD_EASY_HANDLE
  1143. Introduced in 7.9.6
  1144. .IP CURLM_BAD_FUNCTION_ARGUMENT
  1145. Introduced in 7.69.0
  1146. .IP CURLM_BAD_HANDLE
  1147. Introduced in 7.9.6
  1148. .IP CURLM_BAD_SOCKET
  1149. Introduced in 7.15.4
  1150. .IP CURLM_CALL_MULTI_PERFORM
  1151. Introduced in 7.9.6
  1152. .IP CURLM_CALL_MULTI_SOCKET
  1153. Introduced in 7.15.5
  1154. .IP CURLM_INTERNAL_ERROR
  1155. Introduced in 7.9.6
  1156. .IP CURLM_OK
  1157. Introduced in 7.9.6
  1158. .IP CURLM_OUT_OF_MEMORY
  1159. Introduced in 7.9.6
  1160. .IP CURLM_RECURSIVE_API_CALL
  1161. Introduced in 7.59.0
  1162. .IP CURLM_UNKNOWN_OPTION
  1163. Introduced in 7.15.4
  1164. .IP CURLM_UNRECOVERABLE_POLL
  1165. Introduced in 7.84.0
  1166. .IP CURLM_WAKEUP_FAILURE
  1167. Introduced in 7.68.0
  1168. .IP CURLMIMEOPT_FORMESCAPE
  1169. Introduced in 7.81.0
  1170. .IP CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE
  1171. Introduced in 7.30.0
  1172. .IP CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE
  1173. Introduced in 7.30.0
  1174. .IP CURLMOPT_MAX_CONCURRENT_STREAMS
  1175. Introduced in 7.67.0
  1176. .IP CURLMOPT_MAX_HOST_CONNECTIONS
  1177. Introduced in 7.30.0
  1178. .IP CURLMOPT_MAX_PIPELINE_LENGTH
  1179. Introduced in 7.30.0
  1180. .IP CURLMOPT_MAX_TOTAL_CONNECTIONS
  1181. Introduced in 7.30.0
  1182. .IP CURLMOPT_MAXCONNECTS
  1183. Introduced in 7.16.3
  1184. .IP CURLMOPT_PIPELINING
  1185. Introduced in 7.16.0
  1186. .IP CURLMOPT_PIPELINING_SERVER_BL
  1187. Introduced in 7.30.0
  1188. .IP CURLMOPT_PIPELINING_SITE_BL
  1189. Introduced in 7.30.0
  1190. .IP CURLMOPT_PUSHDATA
  1191. Introduced in 7.44.0
  1192. .IP CURLMOPT_PUSHFUNCTION
  1193. Introduced in 7.44.0
  1194. .IP CURLMOPT_SOCKETDATA
  1195. Introduced in 7.15.4
  1196. .IP CURLMOPT_SOCKETFUNCTION
  1197. Introduced in 7.15.4
  1198. .IP CURLMOPT_TIMERDATA
  1199. Introduced in 7.16.0
  1200. .IP CURLMOPT_TIMERFUNCTION
  1201. Introduced in 7.16.0
  1202. .IP CURLMSG_DONE
  1203. Introduced in 7.9.6
  1204. .IP CURLMSG_NONE
  1205. Introduced in 7.9.6
  1206. .IP CURLOPT
  1207. Introduced in 7.69.0
  1208. .IP CURLOPT_ABSTRACT_UNIX_SOCKET
  1209. Introduced in 7.53.0
  1210. .IP CURLOPT_ACCEPT_ENCODING
  1211. Introduced in 7.21.6
  1212. .IP CURLOPT_ACCEPTTIMEOUT_MS
  1213. Introduced in 7.24.0
  1214. .IP CURLOPT_ADDRESS_SCOPE
  1215. Introduced in 7.19.0
  1216. .IP CURLOPT_ALTSVC
  1217. Introduced in 7.64.1
  1218. .IP CURLOPT_ALTSVC_CTRL
  1219. Introduced in 7.64.1
  1220. .IP CURLOPT_APPEND
  1221. Introduced in 7.17.0
  1222. .IP CURLOPT_AUTOREFERER
  1223. Introduced in 7.1
  1224. .IP CURLOPT_AWS_SIGV4
  1225. Introduced in 7.75.0
  1226. .IP CURLOPT_BUFFERSIZE
  1227. Introduced in 7.10
  1228. .IP CURLOPT_CAINFO
  1229. Introduced in 7.4.2
  1230. .IP CURLOPT_CAINFO_BLOB
  1231. Introduced in 7.77.0
  1232. .IP CURLOPT_CAPATH
  1233. Introduced in 7.9.8
  1234. .IP CURLOPT_CA_CACHE_TIMEOUT
  1235. Introduced in 7.87.0
  1236. .IP CURLOPT_CERTINFO
  1237. Introduced in 7.19.1
  1238. .IP CURLOPT_CHUNK_BGN_FUNCTION
  1239. Introduced in 7.21.0
  1240. .IP CURLOPT_CHUNK_DATA
  1241. Introduced in 7.21.0
  1242. .IP CURLOPT_CHUNK_END_FUNCTION
  1243. Introduced in 7.21.0
  1244. .IP CURLOPT_CLOSEFUNCTION
  1245. Introduced in 7.7
  1246. Deprecated since 7.11.1
  1247. Last used in 7.15.5
  1248. .IP CURLOPT_CLOSEPOLICY
  1249. Introduced in 7.7
  1250. Deprecated since 7.16.1
  1251. .IP CURLOPT_CLOSESOCKETDATA
  1252. Introduced in 7.21.7
  1253. .IP CURLOPT_CLOSESOCKETFUNCTION
  1254. Introduced in 7.21.7
  1255. .IP CURLOPT_CONNECT_ONLY
  1256. Introduced in 7.15.2
  1257. .IP CURLOPT_CONNECT_TO
  1258. Introduced in 7.49.0
  1259. .IP CURLOPT_CONNECTTIMEOUT
  1260. Introduced in 7.7
  1261. .IP CURLOPT_CONNECTTIMEOUT_MS
  1262. Introduced in 7.16.2
  1263. .IP CURLOPT_CONV_FROM_NETWORK_FUNCTION
  1264. Introduced in 7.15.4
  1265. Deprecated since 7.82.0
  1266. .IP CURLOPT_CONV_FROM_UTF8_FUNCTION
  1267. Introduced in 7.15.4
  1268. Deprecated since 7.82.0
  1269. .IP CURLOPT_CONV_TO_NETWORK_FUNCTION
  1270. Introduced in 7.15.4
  1271. Deprecated since 7.82.0
  1272. .IP CURLOPT_COOKIE
  1273. Introduced in 7.1
  1274. .IP CURLOPT_COOKIEFILE
  1275. Introduced in 7.1
  1276. .IP CURLOPT_COOKIEJAR
  1277. Introduced in 7.9
  1278. .IP CURLOPT_COOKIELIST
  1279. Introduced in 7.14.1
  1280. .IP CURLOPT_COOKIESESSION
  1281. Introduced in 7.9.7
  1282. .IP CURLOPT_COPYPOSTFIELDS
  1283. Introduced in 7.17.1
  1284. .IP CURLOPT_CRLF
  1285. Introduced in 7.1
  1286. .IP CURLOPT_CRLFILE
  1287. Introduced in 7.19.0
  1288. .IP CURLOPT_CURLU
  1289. Introduced in 7.63.0
  1290. .IP CURLOPT_CUSTOMREQUEST
  1291. Introduced in 7.1
  1292. .IP CURLOPT_DEBUGDATA
  1293. Introduced in 7.9.6
  1294. .IP CURLOPT_DEBUGFUNCTION
  1295. Introduced in 7.9.6
  1296. .IP CURLOPT_DEFAULT_PROTOCOL
  1297. Introduced in 7.45.0
  1298. .IP CURLOPT_DIRLISTONLY
  1299. Introduced in 7.17.0
  1300. .IP CURLOPT_DISALLOW_USERNAME_IN_URL
  1301. Introduced in 7.61.0
  1302. .IP CURLOPT_DNS_CACHE_TIMEOUT
  1303. Introduced in 7.9.3
  1304. .IP CURLOPT_DNS_INTERFACE
  1305. Introduced in 7.33.0
  1306. .IP CURLOPT_DNS_LOCAL_IP4
  1307. Introduced in 7.33.0
  1308. .IP CURLOPT_DNS_LOCAL_IP6
  1309. Introduced in 7.33.0
  1310. .IP CURLOPT_DNS_SERVERS
  1311. Introduced in 7.24.0
  1312. .IP CURLOPT_DNS_SHUFFLE_ADDRESSES
  1313. Introduced in 7.60.0
  1314. .IP CURLOPT_DNS_USE_GLOBAL_CACHE
  1315. Introduced in 7.9.3
  1316. Deprecated since 7.11.1
  1317. .IP CURLOPT_DOH_SSL_VERIFYHOST
  1318. Introduced in 7.76.0
  1319. .IP CURLOPT_DOH_SSL_VERIFYPEER
  1320. Introduced in 7.76.0
  1321. .IP CURLOPT_DOH_SSL_VERIFYSTATUS
  1322. Introduced in 7.76.0
  1323. .IP CURLOPT_DOH_URL
  1324. Introduced in 7.62.0
  1325. .IP CURLOPT_EGDSOCKET
  1326. Introduced in 7.7
  1327. Deprecated since 7.84.0
  1328. .IP CURLOPT_ENCODING
  1329. Introduced in 7.10
  1330. Deprecated since 7.21.6
  1331. .IP CURLOPT_ERRORBUFFER
  1332. Introduced in 7.1
  1333. .IP CURLOPT_EXPECT_100_TIMEOUT_MS
  1334. Introduced in 7.36.0
  1335. .IP CURLOPT_FAILONERROR
  1336. Introduced in 7.1
  1337. .IP CURLOPT_FILE
  1338. Introduced in 7.1
  1339. Deprecated since 7.9.7
  1340. .IP CURLOPT_FILETIME
  1341. Introduced in 7.5
  1342. .IP CURLOPT_FNMATCH_DATA
  1343. Introduced in 7.21.0
  1344. .IP CURLOPT_FNMATCH_FUNCTION
  1345. Introduced in 7.21.0
  1346. .IP CURLOPT_FOLLOWLOCATION
  1347. Introduced in 7.1
  1348. .IP CURLOPT_FORBID_REUSE
  1349. Introduced in 7.7
  1350. .IP CURLOPT_FRESH_CONNECT
  1351. Introduced in 7.7
  1352. .IP CURLOPT_FTP_ACCOUNT
  1353. Introduced in 7.13.0
  1354. .IP CURLOPT_FTP_ALTERNATIVE_TO_USER
  1355. Introduced in 7.15.5
  1356. .IP CURLOPT_FTP_CREATE_MISSING_DIRS
  1357. Introduced in 7.10.7
  1358. .IP CURLOPT_FTP_FILEMETHOD
  1359. Introduced in 7.15.1
  1360. .IP CURLOPT_FTP_RESPONSE_TIMEOUT
  1361. Introduced in 7.10.8
  1362. Deprecated since 7.85.0
  1363. .IP CURLOPT_FTP_SKIP_PASV_IP
  1364. Introduced in 7.15.0
  1365. .IP CURLOPT_FTP_SSL
  1366. Introduced in 7.11.0
  1367. Deprecated since 7.16.4
  1368. .IP CURLOPT_FTP_SSL_CCC
  1369. Introduced in 7.16.1
  1370. .IP CURLOPT_FTP_USE_EPRT
  1371. Introduced in 7.10.5
  1372. .IP CURLOPT_FTP_USE_EPSV
  1373. Introduced in 7.9.2
  1374. .IP CURLOPT_FTP_USE_PRET
  1375. Introduced in 7.20.0
  1376. .IP CURLOPT_FTPAPPEND
  1377. Introduced in 7.1
  1378. Deprecated since 7.16.4
  1379. .IP CURLOPT_FTPASCII
  1380. Introduced in 7.1
  1381. Deprecated since 7.11.1
  1382. Last used in 7.15.5
  1383. .IP CURLOPT_FTPLISTONLY
  1384. Introduced in 7.1
  1385. Deprecated since 7.16.4
  1386. .IP CURLOPT_FTPPORT
  1387. Introduced in 7.1
  1388. .IP CURLOPT_FTPSSLAUTH
  1389. Introduced in 7.12.2
  1390. .IP CURLOPT_GSSAPI_DELEGATION
  1391. Introduced in 7.22.0
  1392. .IP CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS
  1393. Introduced in 7.59.0
  1394. .IP CURLOPT_HAPROXYPROTOCOL
  1395. Introduced in 7.60.0
  1396. .IP CURLOPT_HEADER
  1397. Introduced in 7.1
  1398. .IP CURLOPT_HEADERDATA
  1399. Introduced in 7.10
  1400. .IP CURLOPT_HEADERFUNCTION
  1401. Introduced in 7.7.2
  1402. .IP CURLOPT_HEADEROPT
  1403. Introduced in 7.37.0
  1404. .IP CURLOPT_HSTS
  1405. Introduced in 7.74.0
  1406. .IP CURLOPT_HSTS_CTRL
  1407. Introduced in 7.74.0
  1408. .IP CURLOPT_HSTSREADDATA
  1409. Introduced in 7.74.0
  1410. .IP CURLOPT_HSTSREADFUNCTION
  1411. Introduced in 7.74.0
  1412. .IP CURLOPT_HSTSWRITEDATA
  1413. Introduced in 7.74.0
  1414. .IP CURLOPT_HSTSWRITEFUNCTION
  1415. Introduced in 7.74.0
  1416. .IP CURLOPT_HTTP09_ALLOWED
  1417. Introduced in 7.64.0
  1418. .IP CURLOPT_HTTP200ALIASES
  1419. Introduced in 7.10.3
  1420. .IP CURLOPT_HTTP_CONTENT_DECODING
  1421. Introduced in 7.16.2
  1422. .IP CURLOPT_HTTP_TRANSFER_DECODING
  1423. Introduced in 7.16.2
  1424. .IP CURLOPT_HTTP_VERSION
  1425. Introduced in 7.9.1
  1426. .IP CURLOPT_HTTPAUTH
  1427. Introduced in 7.10.6
  1428. .IP CURLOPT_HTTPGET
  1429. Introduced in 7.8.1
  1430. .IP CURLOPT_HTTPHEADER
  1431. Introduced in 7.1
  1432. .IP CURLOPT_HTTPPOST
  1433. Introduced in 7.1
  1434. Deprecated since 7.56.0
  1435. .IP CURLOPT_HTTPPROXYTUNNEL
  1436. Introduced in 7.3
  1437. .IP CURLOPT_HTTPREQUEST
  1438. Introduced in 7.1
  1439. .IP CURLOPT_IGNORE_CONTENT_LENGTH
  1440. Introduced in 7.14.1
  1441. .IP CURLOPT_INFILE
  1442. Introduced in 7.1
  1443. Deprecated since 7.9.7
  1444. .IP CURLOPT_INFILESIZE
  1445. Introduced in 7.1
  1446. .IP CURLOPT_INFILESIZE_LARGE
  1447. Introduced in 7.11.0
  1448. .IP CURLOPT_INTERFACE
  1449. Introduced in 7.3
  1450. .IP CURLOPT_INTERLEAVEDATA
  1451. Introduced in 7.20.0
  1452. .IP CURLOPT_INTERLEAVEFUNCTION
  1453. Introduced in 7.20.0
  1454. .IP CURLOPT_IOCTLDATA
  1455. Introduced in 7.12.3
  1456. Deprecated since 7.18.0
  1457. .IP CURLOPT_IOCTLFUNCTION
  1458. Introduced in 7.12.3
  1459. Deprecated since 7.18.0
  1460. .IP CURLOPT_IPRESOLVE
  1461. Introduced in 7.10.8
  1462. .IP CURLOPT_ISSUERCERT
  1463. Introduced in 7.19.0
  1464. .IP CURLOPT_ISSUERCERT_BLOB
  1465. Introduced in 7.71.0
  1466. .IP CURLOPT_KEEP_SENDING_ON_ERROR
  1467. Introduced in 7.51.0
  1468. .IP CURLOPT_KEYPASSWD
  1469. Introduced in 7.17.0
  1470. .IP CURLOPT_KRB4LEVEL
  1471. Introduced in 7.3
  1472. Deprecated since 7.17.0
  1473. .IP CURLOPT_KRBLEVEL
  1474. Introduced in 7.16.4
  1475. .IP CURLOPT_LOCALPORT
  1476. Introduced in 7.15.2
  1477. .IP CURLOPT_LOCALPORTRANGE
  1478. Introduced in 7.15.2
  1479. .IP CURLOPT_LOGIN_OPTIONS
  1480. Introduced in 7.34.0
  1481. .IP CURLOPT_LOW_SPEED_LIMIT
  1482. Introduced in 7.1
  1483. .IP CURLOPT_LOW_SPEED_TIME
  1484. Introduced in 7.1
  1485. .IP CURLOPT_MAIL_AUTH
  1486. Introduced in 7.25.0
  1487. .IP CURLOPT_MAIL_FROM
  1488. Introduced in 7.20.0
  1489. .IP CURLOPT_MAIL_RCPT
  1490. Introduced in 7.20.0
  1491. .IP CURLOPT_MAIL_RCPT_ALLLOWFAILS
  1492. Introduced in 7.69.0
  1493. .IP CURLOPT_QUICK_EXIT
  1494. Introduced in 7.87.0
  1495. .IP CURLOPT_MAX_RECV_SPEED_LARGE
  1496. Introduced in 7.15.5
  1497. .IP CURLOPT_MAX_SEND_SPEED_LARGE
  1498. Introduced in 7.15.5
  1499. .IP CURLOPT_MAXAGE_CONN
  1500. Introduced in 7.65.0
  1501. .IP CURLOPT_MAXCONNECTS
  1502. Introduced in 7.7
  1503. .IP CURLOPT_MAXFILESIZE
  1504. Introduced in 7.10.8
  1505. .IP CURLOPT_MAXFILESIZE_LARGE
  1506. Introduced in 7.11.0
  1507. .IP CURLOPT_MAXLIFETIME_CONN
  1508. Introduced in 7.80.0
  1509. .IP CURLOPT_MAXREDIRS
  1510. Introduced in 7.5
  1511. .IP CURLOPT_MIME_OPTIONS
  1512. Introduced in 7.81.0
  1513. .IP CURLOPT_MIMEPOST
  1514. Introduced in 7.56.0
  1515. .IP CURLOPT_MUTE
  1516. Introduced in 7.1
  1517. Deprecated since 7.8
  1518. Last used in 7.15.5
  1519. .IP CURLOPT_NETRC
  1520. Introduced in 7.1
  1521. .IP CURLOPT_NETRC_FILE
  1522. Introduced in 7.11.0
  1523. .IP CURLOPT_NEW_DIRECTORY_PERMS
  1524. Introduced in 7.16.4
  1525. .IP CURLOPT_NEW_FILE_PERMS
  1526. Introduced in 7.16.4
  1527. .IP CURLOPT_NOBODY
  1528. Introduced in 7.1
  1529. .IP CURLOPT_NOPROGRESS
  1530. Introduced in 7.1
  1531. .IP CURLOPT_NOPROXY
  1532. Introduced in 7.19.4
  1533. .IP CURLOPT_NOSIGNAL
  1534. Introduced in 7.10
  1535. .IP CURLOPT_NOTHING
  1536. Introduced in 7.1.1
  1537. Deprecated since 7.11.1
  1538. Last used in 7.11.0
  1539. .IP CURLOPT_OPENSOCKETDATA
  1540. Introduced in 7.17.1
  1541. .IP CURLOPT_OPENSOCKETFUNCTION
  1542. Introduced in 7.17.1
  1543. .IP CURLOPT_PASSWDDATA
  1544. Introduced in 7.4.2
  1545. Deprecated since 7.11.1
  1546. Last used in 7.15.5
  1547. .IP CURLOPT_PASSWDFUNCTION
  1548. Introduced in 7.4.2
  1549. Deprecated since 7.11.1
  1550. Last used in 7.15.5
  1551. .IP CURLOPT_PASSWORD
  1552. Introduced in 7.19.1
  1553. .IP CURLOPT_PASV_HOST
  1554. Introduced in 7.12.1
  1555. Deprecated since 7.16.0
  1556. Last used in 7.15.5
  1557. .IP CURLOPT_PATH_AS_IS
  1558. Introduced in 7.42.0
  1559. .IP CURLOPT_PINNEDPUBLICKEY
  1560. Introduced in 7.39.0
  1561. .IP CURLOPT_PIPEWAIT
  1562. Introduced in 7.43.0
  1563. .IP CURLOPT_PORT
  1564. Introduced in 7.1
  1565. .IP CURLOPT_POST
  1566. Introduced in 7.1
  1567. .IP CURLOPT_POST301
  1568. Introduced in 7.17.1
  1569. Deprecated since 7.19.1
  1570. .IP CURLOPT_POSTFIELDS
  1571. Introduced in 7.1
  1572. .IP CURLOPT_POSTFIELDSIZE
  1573. Introduced in 7.2
  1574. .IP CURLOPT_POSTFIELDSIZE_LARGE
  1575. Introduced in 7.11.1
  1576. .IP CURLOPT_POSTQUOTE
  1577. Introduced in 7.1
  1578. .IP CURLOPT_POSTREDIR
  1579. Introduced in 7.19.1
  1580. .IP CURLOPT_PRE_PROXY
  1581. Introduced in 7.52.0
  1582. .IP CURLOPT_PREQUOTE
  1583. Introduced in 7.9.5
  1584. .IP CURLOPT_PREREQDATA
  1585. Introduced in 7.80.0
  1586. .IP CURLOPT_PREREQFUNCTION
  1587. Introduced in 7.80.0
  1588. .IP CURLOPT_PRIVATE
  1589. Introduced in 7.10.3
  1590. .IP CURLOPT_PROGRESSDATA
  1591. Introduced in 7.1
  1592. .IP CURLOPT_PROGRESSFUNCTION
  1593. Introduced in 7.1
  1594. Deprecated since 7.32.0
  1595. .IP CURLOPT_PROTOCOLS
  1596. Introduced in 7.19.4
  1597. Deprecated since 7.85.0
  1598. .IP CURLOPT_PROTOCOLS_STR
  1599. Introduced in 7.85.0
  1600. .IP CURLOPT_PROXY
  1601. Introduced in 7.1
  1602. .IP CURLOPT_PROXY_CAINFO
  1603. Introduced in 7.52.0
  1604. .IP CURLOPT_PROXY_CAINFO_BLOB
  1605. Introduced in 7.77.0
  1606. .IP CURLOPT_PROXY_CAPATH
  1607. Introduced in 7.52.0
  1608. .IP CURLOPT_PROXY_CRLFILE
  1609. Introduced in 7.52.0
  1610. .IP CURLOPT_PROXY_ISSUERCERT
  1611. Introduced in 7.71.0
  1612. .IP CURLOPT_PROXY_ISSUERCERT_BLOB
  1613. Introduced in 7.71.0
  1614. .IP CURLOPT_PROXY_KEYPASSWD
  1615. Introduced in 7.52.0
  1616. .IP CURLOPT_PROXY_PINNEDPUBLICKEY
  1617. Introduced in 7.52.0
  1618. .IP CURLOPT_PROXY_SERVICE_NAME
  1619. Introduced in 7.43.0
  1620. .IP CURLOPT_PROXY_SSL_CIPHER_LIST
  1621. Introduced in 7.52.0
  1622. .IP CURLOPT_PROXY_SSL_OPTIONS
  1623. Introduced in 7.52.0
  1624. .IP CURLOPT_PROXY_SSL_VERIFYHOST
  1625. Introduced in 7.52.0
  1626. .IP CURLOPT_PROXY_SSL_VERIFYPEER
  1627. Introduced in 7.52.0
  1628. .IP CURLOPT_PROXY_SSLCERT
  1629. Introduced in 7.52.0
  1630. .IP CURLOPT_PROXY_SSLCERT_BLOB
  1631. Introduced in 7.71.0
  1632. .IP CURLOPT_PROXY_SSLCERTTYPE
  1633. Introduced in 7.52.0
  1634. .IP CURLOPT_PROXY_SSLKEY
  1635. Introduced in 7.52.0
  1636. .IP CURLOPT_PROXY_SSLKEY_BLOB
  1637. Introduced in 7.71.0
  1638. .IP CURLOPT_PROXY_SSLKEYTYPE
  1639. Introduced in 7.52.0
  1640. .IP CURLOPT_PROXY_SSLVERSION
  1641. Introduced in 7.52.0
  1642. .IP CURLOPT_PROXY_TLS13_CIPHERS
  1643. Introduced in 7.61.0
  1644. .IP CURLOPT_PROXY_TLSAUTH_PASSWORD
  1645. Introduced in 7.52.0
  1646. .IP CURLOPT_PROXY_TLSAUTH_TYPE
  1647. Introduced in 7.52.0
  1648. .IP CURLOPT_PROXY_TLSAUTH_USERNAME
  1649. Introduced in 7.52.0
  1650. .IP CURLOPT_PROXY_TRANSFER_MODE
  1651. Introduced in 7.18.0
  1652. .IP CURLOPT_PROXYAUTH
  1653. Introduced in 7.10.7
  1654. .IP CURLOPT_PROXYHEADER
  1655. Introduced in 7.37.0
  1656. .IP CURLOPT_PROXYPASSWORD
  1657. Introduced in 7.19.1
  1658. .IP CURLOPT_PROXYPORT
  1659. Introduced in 7.1
  1660. .IP CURLOPT_PROXYTYPE
  1661. Introduced in 7.10
  1662. .IP CURLOPT_PROXYUSERNAME
  1663. Introduced in 7.19.1
  1664. .IP CURLOPT_PROXYUSERPWD
  1665. Introduced in 7.1
  1666. .IP CURLOPT_PUT
  1667. Introduced in 7.1
  1668. Deprecated since 7.12.1
  1669. .IP CURLOPT_QUOTE
  1670. Introduced in 7.1
  1671. .IP CURLOPT_RANDOM_FILE
  1672. Introduced in 7.7
  1673. Deprecated since 7.84.0
  1674. .IP CURLOPT_RANGE
  1675. Introduced in 7.1
  1676. .IP CURLOPT_READDATA
  1677. Introduced in 7.9.7
  1678. .IP CURLOPT_READFUNCTION
  1679. Introduced in 7.1
  1680. .IP CURLOPT_REDIR_PROTOCOLS
  1681. Introduced in 7.19.4
  1682. Deprecated since 7.85.0
  1683. .IP CURLOPT_REDIR_PROTOCOLS_STR
  1684. Introduced in 7.85.0
  1685. .IP CURLOPT_REFERER
  1686. Introduced in 7.1
  1687. .IP CURLOPT_REQUEST_TARGET
  1688. Introduced in 7.55.0
  1689. .IP CURLOPT_RESOLVE
  1690. Introduced in 7.21.3
  1691. .IP CURLOPT_RESOLVER_START_DATA
  1692. Introduced in 7.59.0
  1693. .IP CURLOPT_RESOLVER_START_FUNCTION
  1694. Introduced in 7.59.0
  1695. .IP CURLOPT_RESUME_FROM
  1696. Introduced in 7.1
  1697. .IP CURLOPT_RESUME_FROM_LARGE
  1698. Introduced in 7.11.0
  1699. .IP CURLOPT_RTSP_CLIENT_CSEQ
  1700. Introduced in 7.20.0
  1701. .IP CURLOPT_RTSP_REQUEST
  1702. Introduced in 7.20.0
  1703. .IP CURLOPT_RTSP_SERVER_CSEQ
  1704. Introduced in 7.20.0
  1705. .IP CURLOPT_RTSP_SESSION_ID
  1706. Introduced in 7.20.0
  1707. .IP CURLOPT_RTSP_STREAM_URI
  1708. Introduced in 7.20.0
  1709. .IP CURLOPT_RTSP_TRANSPORT
  1710. Introduced in 7.20.0
  1711. .IP CURLOPT_RTSPHEADER
  1712. Introduced in 7.20.0
  1713. .IP CURLOPT_SASL_AUTHZID
  1714. Introduced in 7.66.0
  1715. .IP CURLOPT_SASL_IR
  1716. Introduced in 7.31.0
  1717. .IP CURLOPT_SEEKDATA
  1718. Introduced in 7.18.0
  1719. .IP CURLOPT_SEEKFUNCTION
  1720. Introduced in 7.18.0
  1721. .IP CURLOPT_SERVER_RESPONSE_TIMEOUT
  1722. Introduced in 7.20.0
  1723. .IP CURLOPT_SERVICE_NAME
  1724. Introduced in 7.43.0
  1725. .IP CURLOPT_SHARE
  1726. Introduced in 7.10
  1727. .IP CURLOPT_SOCKOPTDATA
  1728. Introduced in 7.16.0
  1729. .IP CURLOPT_SOCKOPTFUNCTION
  1730. Introduced in 7.16.0
  1731. .IP CURLOPT_SOCKS5_AUTH
  1732. Introduced in 7.55.0
  1733. .IP CURLOPT_SOCKS5_GSSAPI_NEC
  1734. Introduced in 7.19.4
  1735. .IP CURLOPT_SOCKS5_GSSAPI_SERVICE
  1736. Introduced in 7.19.4
  1737. Deprecated since 7.49.0
  1738. .IP CURLOPT_SOURCE_HOST
  1739. Introduced in 7.12.1
  1740. .IP CURLOPT_SOURCE_PATH
  1741. Introduced in 7.12.1
  1742. .IP CURLOPT_SOURCE_PORT
  1743. Introduced in 7.12.1
  1744. .IP CURLOPT_SOURCE_POSTQUOTE
  1745. Introduced in 7.12.1
  1746. .IP CURLOPT_SOURCE_PREQUOTE
  1747. Introduced in 7.12.1
  1748. .IP CURLOPT_SOURCE_QUOTE
  1749. Introduced in 7.13.0
  1750. .IP CURLOPT_SOURCE_URL
  1751. Introduced in 7.13.0
  1752. .IP CURLOPT_SOURCE_USERPWD
  1753. Introduced in 7.12.1
  1754. .IP CURLOPT_SSH_AUTH_TYPES
  1755. Introduced in 7.16.1
  1756. .IP CURLOPT_SSH_COMPRESSION
  1757. Introduced in 7.56.0
  1758. .IP CURLOPT_SSH_HOST_PUBLIC_KEY_MD5
  1759. Introduced in 7.17.1
  1760. .IP CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256
  1761. Introduced in 7.80.0
  1762. .IP CURLOPT_SSH_HOSTKEYDATA
  1763. Introduced in 7.84.0
  1764. .IP CURLOPT_SSH_HOSTKEYFUNCTION
  1765. Introduced in 7.84.0
  1766. .IP CURLOPT_SSH_KEYDATA
  1767. Introduced in 7.19.6
  1768. .IP CURLOPT_SSH_KEYFUNCTION
  1769. Introduced in 7.19.6
  1770. .IP CURLOPT_SSH_KNOWNHOSTS
  1771. Introduced in 7.19.6
  1772. .IP CURLOPT_SSH_PRIVATE_KEYFILE
  1773. Introduced in 7.16.1
  1774. .IP CURLOPT_SSH_PUBLIC_KEYFILE
  1775. Introduced in 7.16.1
  1776. .IP CURLOPT_SSL_CIPHER_LIST
  1777. Introduced in 7.9
  1778. .IP CURLOPT_SSL_CTX_DATA
  1779. Introduced in 7.10.6
  1780. .IP CURLOPT_SSL_CTX_FUNCTION
  1781. Introduced in 7.10.6
  1782. .IP CURLOPT_SSL_EC_CURVES
  1783. Introduced in 7.73.0
  1784. .IP CURLOPT_SSL_ENABLE_ALPN
  1785. Introduced in 7.36.0
  1786. .IP CURLOPT_SSL_ENABLE_NPN
  1787. Introduced in 7.36.0
  1788. Deprecated since 7.86.0
  1789. .IP CURLOPT_SSL_FALSESTART
  1790. Introduced in 7.42.0
  1791. .IP CURLOPT_SSL_OPTIONS
  1792. Introduced in 7.25.0
  1793. .IP CURLOPT_SSL_SESSIONID_CACHE
  1794. Introduced in 7.16.0
  1795. .IP CURLOPT_SSL_VERIFYHOST
  1796. Introduced in 7.8.1
  1797. .IP CURLOPT_SSL_VERIFYPEER
  1798. Introduced in 7.4.2
  1799. .IP CURLOPT_SSL_VERIFYSTATUS
  1800. Introduced in 7.41.0
  1801. .IP CURLOPT_SSLCERT
  1802. Introduced in 7.1
  1803. .IP CURLOPT_SSLCERT_BLOB
  1804. Introduced in 7.71.0
  1805. .IP CURLOPT_SSLCERTPASSWD
  1806. Introduced in 7.1.1
  1807. Deprecated since 7.17.0
  1808. .IP CURLOPT_SSLCERTTYPE
  1809. Introduced in 7.9.3
  1810. .IP CURLOPT_SSLENGINE
  1811. Introduced in 7.9.3
  1812. .IP CURLOPT_SSLENGINE_DEFAULT
  1813. Introduced in 7.9.3
  1814. .IP CURLOPT_SSLKEY
  1815. Introduced in 7.9.3
  1816. .IP CURLOPT_SSLKEY_BLOB
  1817. Introduced in 7.71.0
  1818. .IP CURLOPT_SSLKEYPASSWD
  1819. Introduced in 7.9.3
  1820. Deprecated since 7.17.0
  1821. .IP CURLOPT_SSLKEYTYPE
  1822. Introduced in 7.9.3
  1823. .IP CURLOPT_SSLVERSION
  1824. Introduced in 7.1
  1825. .IP CURLOPT_STDERR
  1826. Introduced in 7.1
  1827. .IP CURLOPT_STREAM_DEPENDS
  1828. Introduced in 7.46.0
  1829. .IP CURLOPT_STREAM_DEPENDS_E
  1830. Introduced in 7.46.0
  1831. .IP CURLOPT_STREAM_WEIGHT
  1832. Introduced in 7.46.0
  1833. .IP CURLOPT_SUPPRESS_CONNECT_HEADERS
  1834. Introduced in 7.54.0
  1835. .IP CURLOPT_TCP_FASTOPEN
  1836. Introduced in 7.49.0
  1837. .IP CURLOPT_TCP_KEEPALIVE
  1838. Introduced in 7.25.0
  1839. .IP CURLOPT_TCP_KEEPIDLE
  1840. Introduced in 7.25.0
  1841. .IP CURLOPT_TCP_KEEPINTVL
  1842. Introduced in 7.25.0
  1843. .IP CURLOPT_TCP_NODELAY
  1844. Introduced in 7.11.2
  1845. .IP CURLOPT_TELNETOPTIONS
  1846. Introduced in 7.7
  1847. .IP CURLOPT_TFTP_BLKSIZE
  1848. Introduced in 7.19.4
  1849. .IP CURLOPT_TFTP_NO_OPTIONS
  1850. Introduced in 7.48.0
  1851. .IP CURLOPT_TIMECONDITION
  1852. Introduced in 7.1
  1853. .IP CURLOPT_TIMEOUT
  1854. Introduced in 7.1
  1855. .IP CURLOPT_TIMEOUT_MS
  1856. Introduced in 7.16.2
  1857. .IP CURLOPT_TIMEVALUE
  1858. Introduced in 7.1
  1859. .IP CURLOPT_TIMEVALUE_LARGE
  1860. Introduced in 7.59.0
  1861. .IP CURLOPT_TLS13_CIPHERS
  1862. Introduced in 7.61.0
  1863. .IP CURLOPT_TLSAUTH_PASSWORD
  1864. Introduced in 7.21.4
  1865. .IP CURLOPT_TLSAUTH_TYPE
  1866. Introduced in 7.21.4
  1867. .IP CURLOPT_TLSAUTH_USERNAME
  1868. Introduced in 7.21.4
  1869. .IP CURLOPT_TRAILERDATA
  1870. Introduced in 7.64.0
  1871. .IP CURLOPT_TRAILERFUNCTION
  1872. Introduced in 7.64.0
  1873. .IP CURLOPT_TRANSFER_ENCODING
  1874. Introduced in 7.21.6
  1875. .IP CURLOPT_TRANSFERTEXT
  1876. Introduced in 7.1.1
  1877. .IP CURLOPT_UNIX_SOCKET_PATH
  1878. Introduced in 7.40.0
  1879. .IP CURLOPT_UNRESTRICTED_AUTH
  1880. Introduced in 7.10.4
  1881. .IP CURLOPT_UPKEEP_INTERVAL_MS
  1882. Introduced in 7.62.0
  1883. .IP CURLOPT_UPLOAD
  1884. Introduced in 7.1
  1885. .IP CURLOPT_UPLOAD_BUFFERSIZE
  1886. Introduced in 7.62.0
  1887. .IP CURLOPT_URL
  1888. Introduced in 7.1
  1889. .IP CURLOPT_USE_SSL
  1890. Introduced in 7.17.0
  1891. .IP CURLOPT_USERAGENT
  1892. Introduced in 7.1
  1893. .IP CURLOPT_USERNAME
  1894. Introduced in 7.19.1
  1895. .IP CURLOPT_USERPWD
  1896. Introduced in 7.1
  1897. .IP CURLOPT_VERBOSE
  1898. Introduced in 7.1
  1899. .IP CURLOPT_WILDCARDMATCH
  1900. Introduced in 7.21.0
  1901. .IP CURLOPT_WRITEDATA
  1902. Introduced in 7.9.7
  1903. .IP CURLOPT_WRITEFUNCTION
  1904. Introduced in 7.1
  1905. .IP CURLOPT_WRITEHEADER
  1906. Introduced in 7.1
  1907. .IP CURLOPT_WRITEINFO
  1908. Introduced in 7.1
  1909. .IP CURLOPT_WS_OPTIONS
  1910. Introduced in 7.86.0
  1911. .IP CURLOPT_XFERINFODATA
  1912. Introduced in 7.32.0
  1913. .IP CURLOPT_XFERINFOFUNCTION
  1914. Introduced in 7.32.0
  1915. .IP CURLOPT_XOAUTH2_BEARER
  1916. Introduced in 7.33.0
  1917. .IP CURLOPTDEPRECATED
  1918. Introduced in 7.87.0
  1919. .IP CURLOPTTYPE_BLOB
  1920. Introduced in 7.71.0
  1921. .IP CURLOPTTYPE_CBPOINT
  1922. Introduced in 7.73.0
  1923. .IP CURLOPTTYPE_FUNCTIONPOINT
  1924. Introduced in 7.1
  1925. .IP CURLOPTTYPE_LONG
  1926. Introduced in 7.1
  1927. .IP CURLOPTTYPE_OBJECTPOINT
  1928. Introduced in 7.1
  1929. .IP CURLOPTTYPE_OFF_T
  1930. Introduced in 7.11.0
  1931. .IP CURLOPTTYPE_SLISTPOINT
  1932. Introduced in 7.65.2
  1933. .IP CURLOPTTYPE_STRINGPOINT
  1934. Introduced in 7.46.0
  1935. .IP CURLOPTTYPE_VALUES
  1936. Introduced in 7.73.0
  1937. .IP CURLOT_BLOB
  1938. Introduced in 7.73.0
  1939. .IP CURLOT_CBPTR
  1940. Introduced in 7.73.0
  1941. .IP CURLOT_FLAG_ALIAS
  1942. Introduced in 7.73.0
  1943. .IP CURLOT_FUNCTION
  1944. Introduced in 7.73.0
  1945. .IP CURLOT_LONG
  1946. Introduced in 7.73.0
  1947. .IP CURLOT_OBJECT
  1948. Introduced in 7.73.0
  1949. .IP CURLOT_OFF_T
  1950. Introduced in 7.73.0
  1951. .IP CURLOT_SLIST
  1952. Introduced in 7.73.0
  1953. .IP CURLOT_STRING
  1954. Introduced in 7.73.0
  1955. .IP CURLOT_VALUES
  1956. Introduced in 7.73.0
  1957. .IP CURLPAUSE_ALL
  1958. Introduced in 7.18.0
  1959. .IP CURLPAUSE_CONT
  1960. Introduced in 7.18.0
  1961. .IP CURLPAUSE_RECV
  1962. Introduced in 7.18.0
  1963. .IP CURLPAUSE_RECV_CONT
  1964. Introduced in 7.18.0
  1965. .IP CURLPAUSE_SEND
  1966. Introduced in 7.18.0
  1967. .IP CURLPAUSE_SEND_CONT
  1968. Introduced in 7.18.0
  1969. .IP CURLPIPE_HTTP1
  1970. Introduced in 7.43.0
  1971. .IP CURLPIPE_MULTIPLEX
  1972. Introduced in 7.43.0
  1973. .IP CURLPIPE_NOTHING
  1974. Introduced in 7.43.0
  1975. .IP CURLPROTO_ALL
  1976. Introduced in 7.19.4
  1977. .IP CURLPROTO_DICT
  1978. Introduced in 7.19.4
  1979. .IP CURLPROTO_FILE
  1980. Introduced in 7.19.4
  1981. .IP CURLPROTO_FTP
  1982. Introduced in 7.19.4
  1983. .IP CURLPROTO_FTPS
  1984. Introduced in 7.19.4
  1985. .IP CURLPROTO_GOPHER
  1986. Introduced in 7.21.2
  1987. .IP CURLPROTO_GOPHERS
  1988. Introduced in 7.75.0
  1989. .IP CURLPROTO_HTTP
  1990. Introduced in 7.19.4
  1991. .IP CURLPROTO_HTTPS
  1992. Introduced in 7.19.4
  1993. .IP CURLPROTO_IMAP
  1994. Introduced in 7.20.0
  1995. .IP CURLPROTO_IMAPS
  1996. Introduced in 7.20.0
  1997. .IP CURLPROTO_LDAP
  1998. Introduced in 7.19.4
  1999. .IP CURLPROTO_LDAPS
  2000. Introduced in 7.19.4
  2001. .IP CURLPROTO_MQTT
  2002. Introduced in 7.71.0
  2003. .IP CURLPROTO_POP3
  2004. Introduced in 7.20.0
  2005. .IP CURLPROTO_POP3S
  2006. Introduced in 7.20.0
  2007. .IP CURLPROTO_RTMP
  2008. Introduced in 7.21.0
  2009. .IP CURLPROTO_RTMPE
  2010. Introduced in 7.21.0
  2011. .IP CURLPROTO_RTMPS
  2012. Introduced in 7.21.0
  2013. .IP CURLPROTO_RTMPT
  2014. Introduced in 7.21.0
  2015. .IP CURLPROTO_RTMPTE
  2016. Introduced in 7.21.0
  2017. .IP CURLPROTO_RTMPTS
  2018. Introduced in 7.21.0
  2019. .IP CURLPROTO_RTSP
  2020. Introduced in 7.20.0
  2021. .IP CURLPROTO_SCP
  2022. Introduced in 7.19.4
  2023. .IP CURLPROTO_SFTP
  2024. Introduced in 7.19.4
  2025. .IP CURLPROTO_SMB
  2026. Introduced in 7.40.0
  2027. .IP CURLPROTO_SMBS
  2028. Introduced in 7.40.0
  2029. .IP CURLPROTO_SMTP
  2030. Introduced in 7.20.0
  2031. .IP CURLPROTO_SMTPS
  2032. Introduced in 7.20.0
  2033. .IP CURLPROTO_TELNET
  2034. Introduced in 7.19.4
  2035. .IP CURLPROTO_TFTP
  2036. Introduced in 7.19.4
  2037. .IP CURLPROXY_HTTP
  2038. Introduced in 7.10
  2039. .IP CURLPROXY_HTTP_1_0
  2040. Introduced in 7.19.4
  2041. .IP CURLPROXY_HTTPS
  2042. Introduced in 7.52.0
  2043. .IP CURLPROXY_SOCKS4
  2044. Introduced in 7.10
  2045. .IP CURLPROXY_SOCKS4A
  2046. Introduced in 7.18.0
  2047. .IP CURLPROXY_SOCKS5
  2048. Introduced in 7.10
  2049. .IP CURLPROXY_SOCKS5_HOSTNAME
  2050. Introduced in 7.18.0
  2051. .IP CURLPX_BAD_ADDRESS_TYPE
  2052. Introduced in 7.73.0
  2053. .IP CURLPX_BAD_VERSION
  2054. Introduced in 7.73.0
  2055. .IP CURLPX_CLOSED
  2056. Introduced in 7.73.0
  2057. .IP CURLPX_GSSAPI
  2058. Introduced in 7.73.0
  2059. .IP CURLPX_GSSAPI_PERMSG
  2060. Introduced in 7.73.0
  2061. .IP CURLPX_GSSAPI_PROTECTION
  2062. Introduced in 7.73.0
  2063. .IP CURLPX_IDENTD
  2064. Introduced in 7.73.0
  2065. .IP CURLPX_IDENTD_DIFFER
  2066. Introduced in 7.73.0
  2067. .IP CURLPX_LONG_HOSTNAME
  2068. Introduced in 7.73.0
  2069. .IP CURLPX_LONG_PASSWD
  2070. Introduced in 7.73.0
  2071. .IP CURLPX_LONG_USER
  2072. Introduced in 7.73.0
  2073. .IP CURLPX_NO_AUTH
  2074. Introduced in 7.73.0
  2075. .IP CURLPX_OK
  2076. Introduced in 7.73.0
  2077. .IP CURLPX_RECV_ADDRESS
  2078. Introduced in 7.73.0
  2079. .IP CURLPX_RECV_AUTH
  2080. Introduced in 7.73.0
  2081. .IP CURLPX_RECV_CONNECT
  2082. Introduced in 7.73.0
  2083. .IP CURLPX_RECV_REQACK
  2084. Introduced in 7.73.0
  2085. .IP CURLPX_REPLY_ADDRESS_TYPE_NOT_SUPPORTED
  2086. Introduced in 7.73.0
  2087. .IP CURLPX_REPLY_COMMAND_NOT_SUPPORTED
  2088. Introduced in 7.73.0
  2089. .IP CURLPX_REPLY_CONNECTION_REFUSED
  2090. Introduced in 7.73.0
  2091. .IP CURLPX_REPLY_GENERAL_SERVER_FAILURE
  2092. Introduced in 7.73.0
  2093. .IP CURLPX_REPLY_HOST_UNREACHABLE
  2094. Introduced in 7.73.0
  2095. .IP CURLPX_REPLY_NETWORK_UNREACHABLE
  2096. Introduced in 7.73.0
  2097. .IP CURLPX_REPLY_NOT_ALLOWED
  2098. Introduced in 7.73.0
  2099. .IP CURLPX_REPLY_TTL_EXPIRED
  2100. Introduced in 7.73.0
  2101. .IP CURLPX_REPLY_UNASSIGNED
  2102. Introduced in 7.73.0
  2103. .IP CURLPX_REQUEST_FAILED
  2104. Introduced in 7.73.0
  2105. .IP CURLPX_RESOLVE_HOST
  2106. Introduced in 7.73.0
  2107. .IP CURLPX_SEND_AUTH
  2108. Introduced in 7.73.0
  2109. .IP CURLPX_SEND_CONNECT
  2110. Introduced in 7.73.0
  2111. .IP CURLPX_SEND_REQUEST
  2112. Introduced in 7.73.0
  2113. .IP CURLPX_UNKNOWN_FAIL
  2114. Introduced in 7.73.0
  2115. .IP CURLPX_UNKNOWN_MODE
  2116. Introduced in 7.73.0
  2117. .IP CURLPX_USER_REJECTED
  2118. Introduced in 7.73.0
  2119. .IP CURLSHE_BAD_OPTION
  2120. Introduced in 7.10.3
  2121. .IP CURLSHE_IN_USE
  2122. Introduced in 7.10.3
  2123. .IP CURLSHE_INVALID
  2124. Introduced in 7.10.3
  2125. .IP CURLSHE_NOMEM
  2126. Introduced in 7.12.0
  2127. .IP CURLSHE_NOT_BUILT_IN
  2128. Introduced in 7.23.0
  2129. .IP CURLSHE_OK
  2130. Introduced in 7.10.3
  2131. .IP CURLSHOPT_LOCKFUNC
  2132. Introduced in 7.10.3
  2133. .IP CURLSHOPT_NONE
  2134. Introduced in 7.10.3
  2135. .IP CURLSHOPT_SHARE
  2136. Introduced in 7.10.3
  2137. .IP CURLSHOPT_UNLOCKFUNC
  2138. Introduced in 7.10.3
  2139. .IP CURLSHOPT_UNSHARE
  2140. Introduced in 7.10.3
  2141. .IP CURLSHOPT_USERDATA
  2142. Introduced in 7.10.3
  2143. .IP CURLSOCKTYPE_ACCEPT
  2144. Introduced in 7.28.0
  2145. .IP CURLSOCKTYPE_IPCXN
  2146. Introduced in 7.16.0
  2147. .IP CURLSSH_AUTH_AGENT
  2148. Introduced in 7.28.0
  2149. .IP CURLSSH_AUTH_ANY
  2150. Introduced in 7.16.1
  2151. .IP CURLSSH_AUTH_DEFAULT
  2152. Introduced in 7.16.1
  2153. .IP CURLSSH_AUTH_GSSAPI
  2154. Introduced in 7.58.0
  2155. .IP CURLSSH_AUTH_HOST
  2156. Introduced in 7.16.1
  2157. .IP CURLSSH_AUTH_KEYBOARD
  2158. Introduced in 7.16.1
  2159. .IP CURLSSH_AUTH_NONE
  2160. Introduced in 7.16.1
  2161. .IP CURLSSH_AUTH_PASSWORD
  2162. Introduced in 7.16.1
  2163. .IP CURLSSH_AUTH_PUBLICKEY
  2164. Introduced in 7.16.1
  2165. .IP CURLSSLBACKEND_AXTLS
  2166. Introduced in 7.38.0
  2167. Deprecated since 7.61.0
  2168. .IP CURLSSLBACKEND_BEARSSL
  2169. Introduced in 7.68.0
  2170. .IP CURLSSLBACKEND_BORINGSSL
  2171. Introduced in 7.49.0
  2172. .IP CURLSSLBACKEND_CYASSL
  2173. Introduced in 7.34.0
  2174. .IP CURLSSLBACKEND_DARWINSSL
  2175. Introduced in 7.34.0
  2176. Deprecated since 7.64.1
  2177. .IP CURLSSLBACKEND_GNUTLS
  2178. Introduced in 7.34.0
  2179. .IP CURLSSLBACKEND_GSKIT
  2180. Introduced in 7.34.0
  2181. .IP CURLSSLBACKEND_LIBRESSL
  2182. Introduced in 7.49.0
  2183. .IP CURLSSLBACKEND_MBEDTLS
  2184. Introduced in 7.46.0
  2185. .IP CURLSSLBACKEND_MESALINK
  2186. Introduced in 7.62.0
  2187. .IP CURLSSLBACKEND_NONE
  2188. Introduced in 7.34.0
  2189. .IP CURLSSLBACKEND_NSS
  2190. Introduced in 7.34.0
  2191. .IP CURLSSLBACKEND_OPENSSL
  2192. Introduced in 7.34.0
  2193. .IP CURLSSLBACKEND_POLARSSL
  2194. Introduced in 7.34.0
  2195. Deprecated since 7.69.0
  2196. .IP CURLSSLBACKEND_QSOSSL
  2197. Introduced in 7.34.0
  2198. .IP CURLSSLBACKEND_RUSTLS
  2199. Introduced in 7.76.0
  2200. .IP CURLSSLBACKEND_SCHANNEL
  2201. Introduced in 7.34.0
  2202. .IP CURLSSLBACKEND_SECURETRANSPORT
  2203. Introduced in 7.64.1
  2204. .IP CURLSSLBACKEND_WOLFSSL
  2205. Introduced in 7.49.0
  2206. .IP CURLSSLOPT_ALLOW_BEAST
  2207. Introduced in 7.25.0
  2208. .IP CURLSSLOPT_AUTO_CLIENT_CERT
  2209. Introduced in 7.77.0
  2210. .IP CURLSSLOPT_NATIVE_CA
  2211. Introduced in 7.71.0
  2212. .IP CURLSSLOPT_NO_PARTIALCHAIN
  2213. Introduced in 7.68.0
  2214. .IP CURLSSLOPT_NO_REVOKE
  2215. Introduced in 7.44.0
  2216. .IP CURLSSLOPT_REVOKE_BEST_EFFORT
  2217. Introduced in 7.70.0
  2218. .IP CURLSSLSET_NO_BACKENDS
  2219. Introduced in 7.56.0
  2220. .IP CURLSSLSET_OK
  2221. Introduced in 7.56.0
  2222. .IP CURLSSLSET_TOO_LATE
  2223. Introduced in 7.56.0
  2224. .IP CURLSSLSET_UNKNOWN_BACKEND
  2225. Introduced in 7.56.0
  2226. .IP CURLSTS_DONE
  2227. Introduced in 7.74.0
  2228. .IP CURLSTS_FAIL
  2229. Introduced in 7.74.0
  2230. .IP CURLSTS_OK
  2231. Introduced in 7.74.0
  2232. .IP CURLU_ALLOW_SPACE
  2233. Introduced in 7.78.0
  2234. .IP CURLU_APPENDQUERY
  2235. Introduced in 7.62.0
  2236. .IP CURLU_DEFAULT_PORT
  2237. Introduced in 7.62.0
  2238. .IP CURLU_DEFAULT_SCHEME
  2239. Introduced in 7.62.0
  2240. .IP CURLU_DISALLOW_USER
  2241. Introduced in 7.62.0
  2242. .IP CURLU_GUESS_SCHEME
  2243. Introduced in 7.62.0
  2244. .IP CURLU_NO_AUTHORITY
  2245. Introduced in 7.67.0
  2246. .IP CURLU_NO_DEFAULT_PORT
  2247. Introduced in 7.62.0
  2248. .IP CURLU_NON_SUPPORT_SCHEME
  2249. Introduced in 7.62.0
  2250. .IP CURLU_PATH_AS_IS
  2251. Introduced in 7.62.0
  2252. .IP CURLU_PUNYCODE
  2253. Introduced in 7.88.0
  2254. .IP CURLU_URLDECODE
  2255. Introduced in 7.62.0
  2256. .IP CURLU_URLENCODE
  2257. Introduced in 7.62.0
  2258. .IP CURLUE_BAD_FILE_URL
  2259. Introduced in 7.81.0
  2260. .IP CURLUE_BAD_FRAGMENT
  2261. Introduced in 7.81.0
  2262. .IP CURLUE_BAD_HANDLE
  2263. Introduced in 7.62.0
  2264. .IP CURLUE_BAD_HOSTNAME
  2265. Introduced in 7.81.0
  2266. .IP CURLUE_BAD_IPV6
  2267. Introduced in 7.81.0
  2268. .IP CURLUE_BAD_LOGIN
  2269. Introduced in 7.81.0
  2270. .IP CURLUE_BAD_PARTPOINTER
  2271. Introduced in 7.62.0
  2272. .IP CURLUE_BAD_PASSWORD
  2273. Introduced in 7.81.0
  2274. .IP CURLUE_BAD_PATH
  2275. Introduced in 7.81.0
  2276. .IP CURLUE_BAD_PORT_NUMBER
  2277. Introduced in 7.62.0
  2278. .IP CURLUE_BAD_QUERY
  2279. Introduced in 7.81.0
  2280. .IP CURLUE_BAD_SCHEME
  2281. Introduced in 7.81.0
  2282. .IP CURLUE_BAD_SLASHES
  2283. Introduced in 7.81.0
  2284. .IP CURLUE_BAD_USER
  2285. Introduced in 7.81.0
  2286. .IP CURLUE_LACKS_IDN
  2287. Introduced in 7.88.0
  2288. .IP CURLUE_MALFORMED_INPUT
  2289. Introduced in 7.62.0
  2290. .IP CURLUE_NO_FRAGMENT
  2291. Introduced in 7.62.0
  2292. .IP CURLUE_NO_HOST
  2293. Introduced in 7.62.0
  2294. .IP CURLUE_NO_OPTIONS
  2295. Introduced in 7.62.0
  2296. .IP CURLUE_NO_PASSWORD
  2297. Introduced in 7.62.0
  2298. .IP CURLUE_NO_PORT
  2299. Introduced in 7.62.0
  2300. .IP CURLUE_NO_QUERY
  2301. Introduced in 7.62.0
  2302. .IP CURLUE_NO_SCHEME
  2303. Introduced in 7.62.0
  2304. .IP CURLUE_NO_USER
  2305. Introduced in 7.62.0
  2306. .IP CURLUE_NO_ZONEID
  2307. Introduced in 7.81.0
  2308. .IP CURLUE_OK
  2309. Introduced in 7.62.0
  2310. .IP CURLUE_OUT_OF_MEMORY
  2311. Introduced in 7.62.0
  2312. .IP CURLUE_UNKNOWN_PART
  2313. Introduced in 7.62.0
  2314. .IP CURLUE_UNSUPPORTED_SCHEME
  2315. Introduced in 7.62.0
  2316. .IP CURLUE_URLDECODE
  2317. Introduced in 7.62.0
  2318. .IP CURLUE_USER_NOT_ALLOWED
  2319. Introduced in 7.62.0
  2320. .IP CURLUPART_FRAGMENT
  2321. Introduced in 7.62.0
  2322. .IP CURLUPART_HOST
  2323. Introduced in 7.62.0
  2324. .IP CURLUPART_OPTIONS
  2325. Introduced in 7.62.0
  2326. .IP CURLUPART_PASSWORD
  2327. Introduced in 7.62.0
  2328. .IP CURLUPART_PATH
  2329. Introduced in 7.62.0
  2330. .IP CURLUPART_PORT
  2331. Introduced in 7.62.0
  2332. .IP CURLUPART_QUERY
  2333. Introduced in 7.62.0
  2334. .IP CURLUPART_SCHEME
  2335. Introduced in 7.62.0
  2336. .IP CURLUPART_URL
  2337. Introduced in 7.62.0
  2338. .IP CURLUPART_USER
  2339. Introduced in 7.62.0
  2340. .IP CURLUPART_ZONEID
  2341. Introduced in 7.65.0
  2342. .IP CURLUSESSL_ALL
  2343. Introduced in 7.17.0
  2344. .IP CURLUSESSL_CONTROL
  2345. Introduced in 7.17.0
  2346. .IP CURLUSESSL_NONE
  2347. Introduced in 7.17.0
  2348. .IP CURLUSESSL_TRY
  2349. Introduced in 7.17.0
  2350. .IP CURLVERSION_EIGHTH
  2351. Introduced in 7.72.0
  2352. .IP CURLVERSION_ELEVENTH
  2353. Introduced in 7.87.0
  2354. .IP CURLVERSION_FIFTH
  2355. Introduced in 7.57.0
  2356. .IP CURLVERSION_FIRST
  2357. Introduced in 7.10
  2358. .IP CURLVERSION_FOURTH
  2359. Introduced in 7.16.1
  2360. .IP CURLVERSION_NINTH
  2361. Introduced in 7.75.0
  2362. .IP CURLVERSION_NOW
  2363. Introduced in 7.10
  2364. .IP CURLVERSION_SECOND
  2365. Introduced in 7.11.1
  2366. .IP CURLVERSION_SEVENTH
  2367. Introduced in 7.70.0
  2368. .IP CURLVERSION_SIXTH
  2369. Introduced in 7.66.0
  2370. .IP CURLVERSION_TENTH
  2371. Introduced in 7.77.0
  2372. .IP CURLVERSION_THIRD
  2373. Introduced in 7.12.0
  2374. .IP CURLWARNING
  2375. Introduced in 7.66.0
  2376. .IP CURLWS_BINARY
  2377. Introduced in 7.86.0
  2378. .IP CURLWS_CLOSE
  2379. Introduced in 7.86.0
  2380. .IP CURLWS_CONT
  2381. Introduced in 7.86.0
  2382. .IP CURLWS_OFFSET
  2383. Introduced in 7.86.0
  2384. .IP CURLWS_PING
  2385. Introduced in 7.86.0
  2386. .IP CURLWS_PONG
  2387. Introduced in 7.86.0
  2388. .IP CURLWS_RAW_MODE
  2389. Introduced in 7.86.0
  2390. .IP CURLWS_TEXT
  2391. Introduced in 7.86.0