VirtualBox

source: vbox/trunk/src/libs/curl-8.7.1/include/curl/curl.h@ 107044

Last change on this file since 107044 was 104083, checked in by vboxsync, 12 months ago

curl-8.7.1: Applied and adjusted our curl changes to 8.4.0. bugref:10639

  • Property svn:eol-style set to native
File size: 126.1 KB
Line 
1#ifndef CURLINC_CURL_H
2#define CURLINC_CURL_H
3/***************************************************************************
4 * _ _ ____ _
5 * Project ___| | | | _ \| |
6 * / __| | | | |_) | |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
9 *
10 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
11 *
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
14 * are also available at https://curl.se/docs/copyright.html.
15 *
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 * SPDX-License-Identifier: curl
24 *
25 ***************************************************************************/
26
27/*
28 * If you have libcurl problems, all docs and details are found here:
29 * https://curl.se/libcurl/
30 */
31
32#ifdef CURL_NO_OLDIES
33#define CURL_STRICTER
34#endif
35
36/* Compile-time deprecation macros. */
37#if defined(__GNUC__) && \
38 ((__GNUC__ > 12) || ((__GNUC__ == 12) && (__GNUC_MINOR__ >= 1 ))) && \
39 !defined(__INTEL_COMPILER) && \
40 !defined(CURL_DISABLE_DEPRECATION) && !defined(BUILDING_LIBCURL)
41#define CURL_DEPRECATED(version, message) \
42 __attribute__((deprecated("since " # version ". " message)))
43#define CURL_IGNORE_DEPRECATION(statements) \
44 _Pragma("GCC diagnostic push") \
45 _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") \
46 statements \
47 _Pragma("GCC diagnostic pop")
48#else
49#define CURL_DEPRECATED(version, message)
50#define CURL_IGNORE_DEPRECATION(statements) statements
51#endif
52
53#include "curlver.h" /* libcurl version defines */
54#include "system.h" /* determine things run-time */
55
56#include <stdio.h>
57#include <limits.h>
58
59#if defined(__FreeBSD__) || defined(__MidnightBSD__)
60/* Needed for __FreeBSD_version or __MidnightBSD_version symbol definition */
61#include <sys/param.h>
62#endif
63
64/* The include stuff here below is mainly for time_t! */
65#include <sys/types.h>
66#include <time.h>
67
68#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__CYGWIN__)
69#if !(defined(_WINSOCKAPI_) || defined(_WINSOCK_H) || \
70 defined(__LWIP_OPT_H__) || defined(LWIP_HDR_OPT_H))
71/* The check above prevents the winsock2 inclusion if winsock.h already was
72 included, since they can't co-exist without problems */
73# ifdef VBOX
74# include <iprt/win/winsock2.h>
75# include <iprt/win/ws2tcpip.h>
76# else
77#include <winsock2.h>
78#include <ws2tcpip.h>
79# endif
80#endif
81#endif
82
83/* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish
84 libc5-based Linux systems. Only include it on systems that are known to
85 require it! */
86#if defined(_AIX) || defined(__NOVELL_LIBC__) || defined(__NetBSD__) || \
87 defined(__minix) || defined(__INTEGRITY) || \
88 defined(ANDROID) || defined(__ANDROID__) || defined(__OpenBSD__) || \
89 defined(__CYGWIN__) || defined(AMIGA) || defined(__NuttX__) || \
90 (defined(__FreeBSD_version) && (__FreeBSD_version < 800000)) || \
91 (defined(__MidnightBSD_version) && (__MidnightBSD_version < 100000)) || \
92 defined(__sun__) || defined(__serenity__) || defined(__vxworks__)
93#include <sys/select.h>
94#endif
95
96#if !defined(_WIN32) && !defined(_WIN32_WCE)
97#include <sys/socket.h>
98#endif
99
100#if !defined(_WIN32)
101#include <sys/time.h>
102#endif
103
104/* Compatibility for non-Clang compilers */
105#ifndef __has_declspec_attribute
106# define __has_declspec_attribute(x) 0
107#endif
108
109#ifdef __cplusplus
110extern "C" {
111#endif
112
113#if defined(BUILDING_LIBCURL) || defined(CURL_STRICTER)
114typedef struct Curl_easy CURL;
115typedef struct Curl_share CURLSH;
116#else
117typedef void CURL;
118typedef void CURLSH;
119#endif
120
121/*
122 * libcurl external API function linkage decorations.
123 */
124
125#ifdef CURL_STATICLIB
126# define CURL_EXTERN
127#elif defined(_WIN32) || \
128 (__has_declspec_attribute(dllexport) && \
129 __has_declspec_attribute(dllimport))
130# if defined(BUILDING_LIBCURL)
131# define CURL_EXTERN __declspec(dllexport)
132# else
133# define CURL_EXTERN __declspec(dllimport)
134# endif
135#elif defined(BUILDING_LIBCURL) && defined(CURL_HIDDEN_SYMBOLS)
136# define CURL_EXTERN CURL_EXTERN_SYMBOL
137#else
138# define CURL_EXTERN
139#endif
140
141#ifndef curl_socket_typedef
142/* socket typedef */
143#if defined(_WIN32) && !defined(__LWIP_OPT_H__) && !defined(LWIP_HDR_OPT_H)
144typedef SOCKET curl_socket_t;
145#define CURL_SOCKET_BAD INVALID_SOCKET
146#else
147typedef int curl_socket_t;
148#define CURL_SOCKET_BAD -1
149#endif
150#define curl_socket_typedef
151#endif /* curl_socket_typedef */
152
153/* enum for the different supported SSL backends */
154typedef enum {
155 CURLSSLBACKEND_NONE = 0,
156 CURLSSLBACKEND_OPENSSL = 1,
157 CURLSSLBACKEND_GNUTLS = 2,
158 CURLSSLBACKEND_NSS CURL_DEPRECATED(8.3.0, "") = 3,
159 CURLSSLBACKEND_OBSOLETE4 = 4, /* Was QSOSSL. */
160 CURLSSLBACKEND_GSKIT CURL_DEPRECATED(8.3.0, "") = 5,
161 CURLSSLBACKEND_POLARSSL CURL_DEPRECATED(7.69.0, "") = 6,
162 CURLSSLBACKEND_WOLFSSL = 7,
163 CURLSSLBACKEND_SCHANNEL = 8,
164 CURLSSLBACKEND_SECURETRANSPORT = 9,
165 CURLSSLBACKEND_AXTLS CURL_DEPRECATED(7.61.0, "") = 10,
166 CURLSSLBACKEND_MBEDTLS = 11,
167 CURLSSLBACKEND_MESALINK CURL_DEPRECATED(7.82.0, "") = 12,
168 CURLSSLBACKEND_BEARSSL = 13,
169 CURLSSLBACKEND_RUSTLS = 14
170} curl_sslbackend;
171
172/* aliases for library clones and renames */
173#define CURLSSLBACKEND_AWSLC CURLSSLBACKEND_OPENSSL
174#define CURLSSLBACKEND_BORINGSSL CURLSSLBACKEND_OPENSSL
175#define CURLSSLBACKEND_LIBRESSL CURLSSLBACKEND_OPENSSL
176
177/* deprecated names: */
178#define CURLSSLBACKEND_CYASSL CURLSSLBACKEND_WOLFSSL
179#define CURLSSLBACKEND_DARWINSSL CURLSSLBACKEND_SECURETRANSPORT
180
181struct curl_httppost {
182 struct curl_httppost *next; /* next entry in the list */
183 char *name; /* pointer to allocated name */
184 long namelength; /* length of name length */
185 char *contents; /* pointer to allocated data contents */
186 long contentslength; /* length of contents field, see also
187 CURL_HTTPPOST_LARGE */
188 char *buffer; /* pointer to allocated buffer contents */
189 long bufferlength; /* length of buffer field */
190 char *contenttype; /* Content-Type */
191 struct curl_slist *contentheader; /* list of extra headers for this form */
192 struct curl_httppost *more; /* if one field name has more than one
193 file, this link should link to following
194 files */
195 long flags; /* as defined below */
196
197/* specified content is a file name */
198#define CURL_HTTPPOST_FILENAME (1<<0)
199/* specified content is a file name */
200#define CURL_HTTPPOST_READFILE (1<<1)
201/* name is only stored pointer do not free in formfree */
202#define CURL_HTTPPOST_PTRNAME (1<<2)
203/* contents is only stored pointer do not free in formfree */
204#define CURL_HTTPPOST_PTRCONTENTS (1<<3)
205/* upload file from buffer */
206#define CURL_HTTPPOST_BUFFER (1<<4)
207/* upload file from pointer contents */
208#define CURL_HTTPPOST_PTRBUFFER (1<<5)
209/* upload file contents by using the regular read callback to get the data and
210 pass the given pointer as custom pointer */
211#define CURL_HTTPPOST_CALLBACK (1<<6)
212/* use size in 'contentlen', added in 7.46.0 */
213#define CURL_HTTPPOST_LARGE (1<<7)
214
215 char *showfilename; /* The file name to show. If not set, the
216 actual file name will be used (if this
217 is a file part) */
218 void *userp; /* custom pointer used for
219 HTTPPOST_CALLBACK posts */
220 curl_off_t contentlen; /* alternative length of contents
221 field. Used if CURL_HTTPPOST_LARGE is
222 set. Added in 7.46.0 */
223};
224
225
226/* This is a return code for the progress callback that, when returned, will
227 signal libcurl to continue executing the default progress function */
228#define CURL_PROGRESSFUNC_CONTINUE 0x10000001
229
230/* This is the CURLOPT_PROGRESSFUNCTION callback prototype. It is now
231 considered deprecated but was the only choice up until 7.31.0 */
232typedef int (*curl_progress_callback)(void *clientp,
233 double dltotal,
234 double dlnow,
235 double ultotal,
236 double ulnow);
237
238/* This is the CURLOPT_XFERINFOFUNCTION callback prototype. It was introduced
239 in 7.32.0, avoids the use of floating point numbers and provides more
240 detailed information. */
241typedef int (*curl_xferinfo_callback)(void *clientp,
242 curl_off_t dltotal,
243 curl_off_t dlnow,
244 curl_off_t ultotal,
245 curl_off_t ulnow);
246
247#ifndef CURL_MAX_READ_SIZE
248 /* The maximum receive buffer size configurable via CURLOPT_BUFFERSIZE. */
249#define CURL_MAX_READ_SIZE (10*1024*1024)
250#endif
251
252#ifndef CURL_MAX_WRITE_SIZE
253 /* Tests have proven that 20K is a very bad buffer size for uploads on
254 Windows, while 16K for some odd reason performed a lot better.
255 We do the ifndef check to allow this value to easier be changed at build
256 time for those who feel adventurous. The practical minimum is about
257 400 bytes since libcurl uses a buffer of this size as a scratch area
258 (unrelated to network send operations). */
259#define CURL_MAX_WRITE_SIZE 16384
260#endif
261
262#ifndef CURL_MAX_HTTP_HEADER
263/* The only reason to have a max limit for this is to avoid the risk of a bad
264 server feeding libcurl with a never-ending header that will cause reallocs
265 infinitely */
266#define CURL_MAX_HTTP_HEADER (100*1024)
267#endif
268
269/* This is a magic return code for the write callback that, when returned,
270 will signal libcurl to pause receiving on the current transfer. */
271#define CURL_WRITEFUNC_PAUSE 0x10000001
272
273/* This is a magic return code for the write callback that, when returned,
274 will signal an error from the callback. */
275#define CURL_WRITEFUNC_ERROR 0xFFFFFFFF
276
277typedef size_t (*curl_write_callback)(char *buffer,
278 size_t size,
279 size_t nitems,
280 void *outstream);
281
282/* This callback will be called when a new resolver request is made */
283typedef int (*curl_resolver_start_callback)(void *resolver_state,
284 void *reserved, void *userdata);
285
286/* enumeration of file types */
287typedef enum {
288 CURLFILETYPE_FILE = 0,
289 CURLFILETYPE_DIRECTORY,
290 CURLFILETYPE_SYMLINK,
291 CURLFILETYPE_DEVICE_BLOCK,
292 CURLFILETYPE_DEVICE_CHAR,
293 CURLFILETYPE_NAMEDPIPE,
294 CURLFILETYPE_SOCKET,
295 CURLFILETYPE_DOOR, /* is possible only on Sun Solaris now */
296
297 CURLFILETYPE_UNKNOWN /* should never occur */
298} curlfiletype;
299
300#define CURLFINFOFLAG_KNOWN_FILENAME (1<<0)
301#define CURLFINFOFLAG_KNOWN_FILETYPE (1<<1)
302#define CURLFINFOFLAG_KNOWN_TIME (1<<2)
303#define CURLFINFOFLAG_KNOWN_PERM (1<<3)
304#define CURLFINFOFLAG_KNOWN_UID (1<<4)
305#define CURLFINFOFLAG_KNOWN_GID (1<<5)
306#define CURLFINFOFLAG_KNOWN_SIZE (1<<6)
307#define CURLFINFOFLAG_KNOWN_HLINKCOUNT (1<<7)
308
309/* Information about a single file, used when doing FTP wildcard matching */
310struct curl_fileinfo {
311 char *filename;
312 curlfiletype filetype;
313 time_t time; /* always zero! */
314 unsigned int perm;
315 int uid;
316 int gid;
317 curl_off_t size;
318 long int hardlinks;
319
320 struct {
321 /* If some of these fields is not NULL, it is a pointer to b_data. */
322 char *time;
323 char *perm;
324 char *user;
325 char *group;
326 char *target; /* pointer to the target filename of a symlink */
327 } strings;
328
329 unsigned int flags;
330
331 /* These are libcurl private struct fields. Previously used by libcurl, so
332 they must never be interfered with. */
333 char *b_data;
334 size_t b_size;
335 size_t b_used;
336};
337
338/* return codes for CURLOPT_CHUNK_BGN_FUNCTION */
339#define CURL_CHUNK_BGN_FUNC_OK 0
340#define CURL_CHUNK_BGN_FUNC_FAIL 1 /* tell the lib to end the task */
341#define CURL_CHUNK_BGN_FUNC_SKIP 2 /* skip this chunk over */
342
343/* if splitting of data transfer is enabled, this callback is called before
344 download of an individual chunk started. Note that parameter "remains" works
345 only for FTP wildcard downloading (for now), otherwise is not used */
346typedef long (*curl_chunk_bgn_callback)(const void *transfer_info,
347 void *ptr,
348 int remains);
349
350/* return codes for CURLOPT_CHUNK_END_FUNCTION */
351#define CURL_CHUNK_END_FUNC_OK 0
352#define CURL_CHUNK_END_FUNC_FAIL 1 /* tell the lib to end the task */
353
354/* If splitting of data transfer is enabled this callback is called after
355 download of an individual chunk finished.
356 Note! After this callback was set then it have to be called FOR ALL chunks.
357 Even if downloading of this chunk was skipped in CHUNK_BGN_FUNC.
358 This is the reason why we don't need "transfer_info" parameter in this
359 callback and we are not interested in "remains" parameter too. */
360typedef long (*curl_chunk_end_callback)(void *ptr);
361
362/* return codes for FNMATCHFUNCTION */
363#define CURL_FNMATCHFUNC_MATCH 0 /* string corresponds to the pattern */
364#define CURL_FNMATCHFUNC_NOMATCH 1 /* pattern doesn't match the string */
365#define CURL_FNMATCHFUNC_FAIL 2 /* an error occurred */
366
367/* callback type for wildcard downloading pattern matching. If the
368 string matches the pattern, return CURL_FNMATCHFUNC_MATCH value, etc. */
369typedef int (*curl_fnmatch_callback)(void *ptr,
370 const char *pattern,
371 const char *string);
372
373/* These are the return codes for the seek callbacks */
374#define CURL_SEEKFUNC_OK 0
375#define CURL_SEEKFUNC_FAIL 1 /* fail the entire transfer */
376#define CURL_SEEKFUNC_CANTSEEK 2 /* tell libcurl seeking can't be done, so
377 libcurl might try other means instead */
378typedef int (*curl_seek_callback)(void *instream,
379 curl_off_t offset,
380 int origin); /* 'whence' */
381
382/* This is a return code for the read callback that, when returned, will
383 signal libcurl to immediately abort the current transfer. */
384#define CURL_READFUNC_ABORT 0x10000000
385/* This is a return code for the read callback that, when returned, will
386 signal libcurl to pause sending data on the current transfer. */
387#define CURL_READFUNC_PAUSE 0x10000001
388
389/* Return code for when the trailing headers' callback has terminated
390 without any errors */
391#define CURL_TRAILERFUNC_OK 0
392/* Return code for when was an error in the trailing header's list and we
393 want to abort the request */
394#define CURL_TRAILERFUNC_ABORT 1
395
396typedef size_t (*curl_read_callback)(char *buffer,
397 size_t size,
398 size_t nitems,
399 void *instream);
400
401typedef int (*curl_trailer_callback)(struct curl_slist **list,
402 void *userdata);
403
404typedef enum {
405 CURLSOCKTYPE_IPCXN, /* socket created for a specific IP connection */
406 CURLSOCKTYPE_ACCEPT, /* socket created by accept() call */
407 CURLSOCKTYPE_LAST /* never use */
408} curlsocktype;
409
410/* The return code from the sockopt_callback can signal information back
411 to libcurl: */
412#define CURL_SOCKOPT_OK 0
413#define CURL_SOCKOPT_ERROR 1 /* causes libcurl to abort and return
414 CURLE_ABORTED_BY_CALLBACK */
415#define CURL_SOCKOPT_ALREADY_CONNECTED 2
416
417typedef int (*curl_sockopt_callback)(void *clientp,
418 curl_socket_t curlfd,
419 curlsocktype purpose);
420
421struct curl_sockaddr {
422 int family;
423 int socktype;
424 int protocol;
425 unsigned int addrlen; /* addrlen was a socklen_t type before 7.18.0 but it
426 turned really ugly and painful on the systems that
427 lack this type */
428 struct sockaddr addr;
429};
430
431typedef curl_socket_t
432(*curl_opensocket_callback)(void *clientp,
433 curlsocktype purpose,
434 struct curl_sockaddr *address);
435
436typedef int
437(*curl_closesocket_callback)(void *clientp, curl_socket_t item);
438
439typedef enum {
440 CURLIOE_OK, /* I/O operation successful */
441 CURLIOE_UNKNOWNCMD, /* command was unknown to callback */
442 CURLIOE_FAILRESTART, /* failed to restart the read */
443 CURLIOE_LAST /* never use */
444} curlioerr;
445
446typedef enum {
447 CURLIOCMD_NOP, /* no operation */
448 CURLIOCMD_RESTARTREAD, /* restart the read stream from start */
449 CURLIOCMD_LAST /* never use */
450} curliocmd;
451
452typedef curlioerr (*curl_ioctl_callback)(CURL *handle,
453 int cmd,
454 void *clientp);
455
456#ifndef CURL_DID_MEMORY_FUNC_TYPEDEFS
457/*
458 * The following typedef's are signatures of malloc, free, realloc, strdup and
459 * calloc respectively. Function pointers of these types can be passed to the
460 * curl_global_init_mem() function to set user defined memory management
461 * callback routines.
462 */
463typedef void *(*curl_malloc_callback)(size_t size);
464typedef void (*curl_free_callback)(void *ptr);
465typedef void *(*curl_realloc_callback)(void *ptr, size_t size);
466typedef char *(*curl_strdup_callback)(const char *str);
467typedef void *(*curl_calloc_callback)(size_t nmemb, size_t size);
468
469#define CURL_DID_MEMORY_FUNC_TYPEDEFS
470#endif
471
472/* the kind of data that is passed to information_callback */
473typedef enum {
474 CURLINFO_TEXT = 0,
475 CURLINFO_HEADER_IN, /* 1 */
476 CURLINFO_HEADER_OUT, /* 2 */
477 CURLINFO_DATA_IN, /* 3 */
478 CURLINFO_DATA_OUT, /* 4 */
479 CURLINFO_SSL_DATA_IN, /* 5 */
480 CURLINFO_SSL_DATA_OUT, /* 6 */
481 CURLINFO_END
482} curl_infotype;
483
484typedef int (*curl_debug_callback)
485 (CURL *handle, /* the handle/transfer this concerns */
486 curl_infotype type, /* what kind of data */
487 char *data, /* points to the data */
488 size_t size, /* size of the data pointed to */
489 void *userptr); /* whatever the user please */
490
491/* This is the CURLOPT_PREREQFUNCTION callback prototype. */
492typedef int (*curl_prereq_callback)(void *clientp,
493 char *conn_primary_ip,
494 char *conn_local_ip,
495 int conn_primary_port,
496 int conn_local_port);
497
498/* Return code for when the pre-request callback has terminated without
499 any errors */
500#define CURL_PREREQFUNC_OK 0
501/* Return code for when the pre-request callback wants to abort the
502 request */
503#define CURL_PREREQFUNC_ABORT 1
504
505/* All possible error codes from all sorts of curl functions. Future versions
506 may return other values, stay prepared.
507
508 Always add new return codes last. Never *EVER* remove any. The return
509 codes must remain the same!
510 */
511
512typedef enum {
513 CURLE_OK = 0,
514 CURLE_UNSUPPORTED_PROTOCOL, /* 1 */
515 CURLE_FAILED_INIT, /* 2 */
516 CURLE_URL_MALFORMAT, /* 3 */
517 CURLE_NOT_BUILT_IN, /* 4 - [was obsoleted in August 2007 for
518 7.17.0, reused in April 2011 for 7.21.5] */
519 CURLE_COULDNT_RESOLVE_PROXY, /* 5 */
520 CURLE_COULDNT_RESOLVE_HOST, /* 6 */
521 CURLE_COULDNT_CONNECT, /* 7 */
522 CURLE_WEIRD_SERVER_REPLY, /* 8 */
523 CURLE_REMOTE_ACCESS_DENIED, /* 9 a service was denied by the server
524 due to lack of access - when login fails
525 this is not returned. */
526 CURLE_FTP_ACCEPT_FAILED, /* 10 - [was obsoleted in April 2006 for
527 7.15.4, reused in Dec 2011 for 7.24.0]*/
528 CURLE_FTP_WEIRD_PASS_REPLY, /* 11 */
529 CURLE_FTP_ACCEPT_TIMEOUT, /* 12 - timeout occurred accepting server
530 [was obsoleted in August 2007 for 7.17.0,
531 reused in Dec 2011 for 7.24.0]*/
532 CURLE_FTP_WEIRD_PASV_REPLY, /* 13 */
533 CURLE_FTP_WEIRD_227_FORMAT, /* 14 */
534 CURLE_FTP_CANT_GET_HOST, /* 15 */
535 CURLE_HTTP2, /* 16 - A problem in the http2 framing layer.
536 [was obsoleted in August 2007 for 7.17.0,
537 reused in July 2014 for 7.38.0] */
538 CURLE_FTP_COULDNT_SET_TYPE, /* 17 */
539 CURLE_PARTIAL_FILE, /* 18 */
540 CURLE_FTP_COULDNT_RETR_FILE, /* 19 */
541 CURLE_OBSOLETE20, /* 20 - NOT USED */
542 CURLE_QUOTE_ERROR, /* 21 - quote command failure */
543 CURLE_HTTP_RETURNED_ERROR, /* 22 */
544 CURLE_WRITE_ERROR, /* 23 */
545 CURLE_OBSOLETE24, /* 24 - NOT USED */
546 CURLE_UPLOAD_FAILED, /* 25 - failed upload "command" */
547 CURLE_READ_ERROR, /* 26 - couldn't open/read from file */
548 CURLE_OUT_OF_MEMORY, /* 27 */
549 CURLE_OPERATION_TIMEDOUT, /* 28 - the timeout time was reached */
550 CURLE_OBSOLETE29, /* 29 - NOT USED */
551 CURLE_FTP_PORT_FAILED, /* 30 - FTP PORT operation failed */
552 CURLE_FTP_COULDNT_USE_REST, /* 31 - the REST command failed */
553 CURLE_OBSOLETE32, /* 32 - NOT USED */
554 CURLE_RANGE_ERROR, /* 33 - RANGE "command" didn't work */
555 CURLE_HTTP_POST_ERROR, /* 34 */
556 CURLE_SSL_CONNECT_ERROR, /* 35 - wrong when connecting with SSL */
557 CURLE_BAD_DOWNLOAD_RESUME, /* 36 - couldn't resume download */
558 CURLE_FILE_COULDNT_READ_FILE, /* 37 */
559 CURLE_LDAP_CANNOT_BIND, /* 38 */
560 CURLE_LDAP_SEARCH_FAILED, /* 39 */
561 CURLE_OBSOLETE40, /* 40 - NOT USED */
562 CURLE_FUNCTION_NOT_FOUND, /* 41 - NOT USED starting with 7.53.0 */
563 CURLE_ABORTED_BY_CALLBACK, /* 42 */
564 CURLE_BAD_FUNCTION_ARGUMENT, /* 43 */
565 CURLE_OBSOLETE44, /* 44 - NOT USED */
566 CURLE_INTERFACE_FAILED, /* 45 - CURLOPT_INTERFACE failed */
567 CURLE_OBSOLETE46, /* 46 - NOT USED */
568 CURLE_TOO_MANY_REDIRECTS, /* 47 - catch endless re-direct loops */
569 CURLE_UNKNOWN_OPTION, /* 48 - User specified an unknown option */
570 CURLE_SETOPT_OPTION_SYNTAX, /* 49 - Malformed setopt option */
571 CURLE_OBSOLETE50, /* 50 - NOT USED */
572 CURLE_OBSOLETE51, /* 51 - NOT USED */
573 CURLE_GOT_NOTHING, /* 52 - when this is a specific error */
574 CURLE_SSL_ENGINE_NOTFOUND, /* 53 - SSL crypto engine not found */
575 CURLE_SSL_ENGINE_SETFAILED, /* 54 - can not set SSL crypto engine as
576 default */
577 CURLE_SEND_ERROR, /* 55 - failed sending network data */
578 CURLE_RECV_ERROR, /* 56 - failure in receiving network data */
579 CURLE_OBSOLETE57, /* 57 - NOT IN USE */
580 CURLE_SSL_CERTPROBLEM, /* 58 - problem with the local certificate */
581 CURLE_SSL_CIPHER, /* 59 - couldn't use specified cipher */
582 CURLE_PEER_FAILED_VERIFICATION, /* 60 - peer's certificate or fingerprint
583 wasn't verified fine */
584 CURLE_BAD_CONTENT_ENCODING, /* 61 - Unrecognized/bad encoding */
585 CURLE_OBSOLETE62, /* 62 - NOT IN USE since 7.82.0 */
586 CURLE_FILESIZE_EXCEEDED, /* 63 - Maximum file size exceeded */
587 CURLE_USE_SSL_FAILED, /* 64 - Requested FTP SSL level failed */
588 CURLE_SEND_FAIL_REWIND, /* 65 - Sending the data requires a rewind
589 that failed */
590 CURLE_SSL_ENGINE_INITFAILED, /* 66 - failed to initialise ENGINE */
591 CURLE_LOGIN_DENIED, /* 67 - user, password or similar was not
592 accepted and we failed to login */
593 CURLE_TFTP_NOTFOUND, /* 68 - file not found on server */
594 CURLE_TFTP_PERM, /* 69 - permission problem on server */
595 CURLE_REMOTE_DISK_FULL, /* 70 - out of disk space on server */
596 CURLE_TFTP_ILLEGAL, /* 71 - Illegal TFTP operation */
597 CURLE_TFTP_UNKNOWNID, /* 72 - Unknown transfer ID */
598 CURLE_REMOTE_FILE_EXISTS, /* 73 - File already exists */
599 CURLE_TFTP_NOSUCHUSER, /* 74 - No such user */
600 CURLE_OBSOLETE75, /* 75 - NOT IN USE since 7.82.0 */
601 CURLE_OBSOLETE76, /* 76 - NOT IN USE since 7.82.0 */
602 CURLE_SSL_CACERT_BADFILE, /* 77 - could not load CACERT file, missing
603 or wrong format */
604 CURLE_REMOTE_FILE_NOT_FOUND, /* 78 - remote file not found */
605 CURLE_SSH, /* 79 - error from the SSH layer, somewhat
606 generic so the error message will be of
607 interest when this has happened */
608
609 CURLE_SSL_SHUTDOWN_FAILED, /* 80 - Failed to shut down the SSL
610 connection */
611 CURLE_AGAIN, /* 81 - socket is not ready for send/recv,
612 wait till it's ready and try again (Added
613 in 7.18.2) */
614 CURLE_SSL_CRL_BADFILE, /* 82 - could not load CRL file, missing or
615 wrong format (Added in 7.19.0) */
616 CURLE_SSL_ISSUER_ERROR, /* 83 - Issuer check failed. (Added in
617 7.19.0) */
618 CURLE_FTP_PRET_FAILED, /* 84 - a PRET command failed */
619 CURLE_RTSP_CSEQ_ERROR, /* 85 - mismatch of RTSP CSeq numbers */
620 CURLE_RTSP_SESSION_ERROR, /* 86 - mismatch of RTSP Session Ids */
621 CURLE_FTP_BAD_FILE_LIST, /* 87 - unable to parse FTP file list */
622 CURLE_CHUNK_FAILED, /* 88 - chunk callback reported error */
623 CURLE_NO_CONNECTION_AVAILABLE, /* 89 - No connection available, the
624 session will be queued */
625 CURLE_SSL_PINNEDPUBKEYNOTMATCH, /* 90 - specified pinned public key did not
626 match */
627 CURLE_SSL_INVALIDCERTSTATUS, /* 91 - invalid certificate status */
628 CURLE_HTTP2_STREAM, /* 92 - stream error in HTTP/2 framing layer
629 */
630 CURLE_RECURSIVE_API_CALL, /* 93 - an api function was called from
631 inside a callback */
632 CURLE_AUTH_ERROR, /* 94 - an authentication function returned an
633 error */
634 CURLE_HTTP3, /* 95 - An HTTP/3 layer problem */
635 CURLE_QUIC_CONNECT_ERROR, /* 96 - QUIC connection error */
636 CURLE_PROXY, /* 97 - proxy handshake error */
637 CURLE_SSL_CLIENTCERT, /* 98 - client-side certificate required */
638 CURLE_UNRECOVERABLE_POLL, /* 99 - poll/select returned fatal error */
639 CURLE_TOO_LARGE, /* 100 - a value/data met its maximum */
640 CURL_LAST /* never use! */
641} CURLcode;
642
643#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
644 the obsolete stuff removed! */
645
646/* Previously obsolete error code reused in 7.38.0 */
647#define CURLE_OBSOLETE16 CURLE_HTTP2
648
649/* Previously obsolete error codes reused in 7.24.0 */
650#define CURLE_OBSOLETE10 CURLE_FTP_ACCEPT_FAILED
651#define CURLE_OBSOLETE12 CURLE_FTP_ACCEPT_TIMEOUT
652
653/* compatibility with older names */
654#define CURLOPT_ENCODING CURLOPT_ACCEPT_ENCODING
655#define CURLE_FTP_WEIRD_SERVER_REPLY CURLE_WEIRD_SERVER_REPLY
656
657/* The following were added in 7.62.0 */
658#define CURLE_SSL_CACERT CURLE_PEER_FAILED_VERIFICATION
659
660/* The following were added in 7.21.5, April 2011 */
661#define CURLE_UNKNOWN_TELNET_OPTION CURLE_UNKNOWN_OPTION
662
663/* Added for 7.78.0 */
664#define CURLE_TELNET_OPTION_SYNTAX CURLE_SETOPT_OPTION_SYNTAX
665
666/* The following were added in 7.17.1 */
667/* These are scheduled to disappear by 2009 */
668#define CURLE_SSL_PEER_CERTIFICATE CURLE_PEER_FAILED_VERIFICATION
669
670/* The following were added in 7.17.0 */
671/* These are scheduled to disappear by 2009 */
672#define CURLE_OBSOLETE CURLE_OBSOLETE50 /* no one should be using this! */
673#define CURLE_BAD_PASSWORD_ENTERED CURLE_OBSOLETE46
674#define CURLE_BAD_CALLING_ORDER CURLE_OBSOLETE44
675#define CURLE_FTP_USER_PASSWORD_INCORRECT CURLE_OBSOLETE10
676#define CURLE_FTP_CANT_RECONNECT CURLE_OBSOLETE16
677#define CURLE_FTP_COULDNT_GET_SIZE CURLE_OBSOLETE32
678#define CURLE_FTP_COULDNT_SET_ASCII CURLE_OBSOLETE29
679#define CURLE_FTP_WEIRD_USER_REPLY CURLE_OBSOLETE12
680#define CURLE_FTP_WRITE_ERROR CURLE_OBSOLETE20
681#define CURLE_LIBRARY_NOT_FOUND CURLE_OBSOLETE40
682#define CURLE_MALFORMAT_USER CURLE_OBSOLETE24
683#define CURLE_SHARE_IN_USE CURLE_OBSOLETE57
684#define CURLE_URL_MALFORMAT_USER CURLE_NOT_BUILT_IN
685
686#define CURLE_FTP_ACCESS_DENIED CURLE_REMOTE_ACCESS_DENIED
687#define CURLE_FTP_COULDNT_SET_BINARY CURLE_FTP_COULDNT_SET_TYPE
688#define CURLE_FTP_QUOTE_ERROR CURLE_QUOTE_ERROR
689#define CURLE_TFTP_DISKFULL CURLE_REMOTE_DISK_FULL
690#define CURLE_TFTP_EXISTS CURLE_REMOTE_FILE_EXISTS
691#define CURLE_HTTP_RANGE_ERROR CURLE_RANGE_ERROR
692#define CURLE_FTP_SSL_FAILED CURLE_USE_SSL_FAILED
693
694/* The following were added earlier */
695
696#define CURLE_OPERATION_TIMEOUTED CURLE_OPERATION_TIMEDOUT
697#define CURLE_HTTP_NOT_FOUND CURLE_HTTP_RETURNED_ERROR
698#define CURLE_HTTP_PORT_FAILED CURLE_INTERFACE_FAILED
699#define CURLE_FTP_COULDNT_STOR_FILE CURLE_UPLOAD_FAILED
700#define CURLE_FTP_PARTIAL_FILE CURLE_PARTIAL_FILE
701#define CURLE_FTP_BAD_DOWNLOAD_RESUME CURLE_BAD_DOWNLOAD_RESUME
702#define CURLE_LDAP_INVALID_URL CURLE_OBSOLETE62
703#define CURLE_CONV_REQD CURLE_OBSOLETE76
704#define CURLE_CONV_FAILED CURLE_OBSOLETE75
705
706/* This was the error code 50 in 7.7.3 and a few earlier versions, this
707 is no longer used by libcurl but is instead #defined here only to not
708 make programs break */
709#define CURLE_ALREADY_COMPLETE 99999
710
711/* Provide defines for really old option names */
712#define CURLOPT_FILE CURLOPT_WRITEDATA /* name changed in 7.9.7 */
713#define CURLOPT_INFILE CURLOPT_READDATA /* name changed in 7.9.7 */
714#define CURLOPT_WRITEHEADER CURLOPT_HEADERDATA
715
716/* Since long deprecated options with no code in the lib that does anything
717 with them. */
718#define CURLOPT_WRITEINFO CURLOPT_OBSOLETE40
719#define CURLOPT_CLOSEPOLICY CURLOPT_OBSOLETE72
720
721#endif /* !CURL_NO_OLDIES */
722
723/*
724 * Proxy error codes. Returned in CURLINFO_PROXY_ERROR if CURLE_PROXY was
725 * return for the transfers.
726 */
727typedef enum {
728 CURLPX_OK,
729 CURLPX_BAD_ADDRESS_TYPE,
730 CURLPX_BAD_VERSION,
731 CURLPX_CLOSED,
732 CURLPX_GSSAPI,
733 CURLPX_GSSAPI_PERMSG,
734 CURLPX_GSSAPI_PROTECTION,
735 CURLPX_IDENTD,
736 CURLPX_IDENTD_DIFFER,
737 CURLPX_LONG_HOSTNAME,
738 CURLPX_LONG_PASSWD,
739 CURLPX_LONG_USER,
740 CURLPX_NO_AUTH,
741 CURLPX_RECV_ADDRESS,
742 CURLPX_RECV_AUTH,
743 CURLPX_RECV_CONNECT,
744 CURLPX_RECV_REQACK,
745 CURLPX_REPLY_ADDRESS_TYPE_NOT_SUPPORTED,
746 CURLPX_REPLY_COMMAND_NOT_SUPPORTED,
747 CURLPX_REPLY_CONNECTION_REFUSED,
748 CURLPX_REPLY_GENERAL_SERVER_FAILURE,
749 CURLPX_REPLY_HOST_UNREACHABLE,
750 CURLPX_REPLY_NETWORK_UNREACHABLE,
751 CURLPX_REPLY_NOT_ALLOWED,
752 CURLPX_REPLY_TTL_EXPIRED,
753 CURLPX_REPLY_UNASSIGNED,
754 CURLPX_REQUEST_FAILED,
755 CURLPX_RESOLVE_HOST,
756 CURLPX_SEND_AUTH,
757 CURLPX_SEND_CONNECT,
758 CURLPX_SEND_REQUEST,
759 CURLPX_UNKNOWN_FAIL,
760 CURLPX_UNKNOWN_MODE,
761 CURLPX_USER_REJECTED,
762 CURLPX_LAST /* never use */
763} CURLproxycode;
764
765/* This prototype applies to all conversion callbacks */
766typedef CURLcode (*curl_conv_callback)(char *buffer, size_t length);
767
768typedef CURLcode (*curl_ssl_ctx_callback)(CURL *curl, /* easy handle */
769 void *ssl_ctx, /* actually an OpenSSL
770 or WolfSSL SSL_CTX,
771 or an mbedTLS
772 mbedtls_ssl_config */
773 void *userptr);
774
775typedef enum {
776 CURLPROXY_HTTP = 0, /* added in 7.10, new in 7.19.4 default is to use
777 CONNECT HTTP/1.1 */
778 CURLPROXY_HTTP_1_0 = 1, /* added in 7.19.4, force to use CONNECT
779 HTTP/1.0 */
780 CURLPROXY_HTTPS = 2, /* HTTPS but stick to HTTP/1 added in 7.52.0 */
781 CURLPROXY_HTTPS2 = 3, /* HTTPS and attempt HTTP/2 added in 8.2.0 */
782 CURLPROXY_SOCKS4 = 4, /* support added in 7.15.2, enum existed already
783 in 7.10 */
784 CURLPROXY_SOCKS5 = 5, /* added in 7.10 */
785 CURLPROXY_SOCKS4A = 6, /* added in 7.18.0 */
786 CURLPROXY_SOCKS5_HOSTNAME = 7 /* Use the SOCKS5 protocol but pass along the
787 host name rather than the IP address. added
788 in 7.18.0 */
789} curl_proxytype; /* this enum was added in 7.10 */
790
791/*
792 * Bitmasks for CURLOPT_HTTPAUTH and CURLOPT_PROXYAUTH options:
793 *
794 * CURLAUTH_NONE - No HTTP authentication
795 * CURLAUTH_BASIC - HTTP Basic authentication (default)
796 * CURLAUTH_DIGEST - HTTP Digest authentication
797 * CURLAUTH_NEGOTIATE - HTTP Negotiate (SPNEGO) authentication
798 * CURLAUTH_GSSNEGOTIATE - Alias for CURLAUTH_NEGOTIATE (deprecated)
799 * CURLAUTH_NTLM - HTTP NTLM authentication
800 * CURLAUTH_DIGEST_IE - HTTP Digest authentication with IE flavour
801 * CURLAUTH_NTLM_WB - HTTP NTLM authentication delegated to winbind helper
802 * CURLAUTH_BEARER - HTTP Bearer token authentication
803 * CURLAUTH_ONLY - Use together with a single other type to force no
804 * authentication or just that single type
805 * CURLAUTH_ANY - All fine types set
806 * CURLAUTH_ANYSAFE - All fine types except Basic
807 */
808
809#define CURLAUTH_NONE ((unsigned long)0)
810#define CURLAUTH_BASIC (((unsigned long)1)<<0)
811#define CURLAUTH_DIGEST (((unsigned long)1)<<1)
812#define CURLAUTH_NEGOTIATE (((unsigned long)1)<<2)
813/* Deprecated since the advent of CURLAUTH_NEGOTIATE */
814#define CURLAUTH_GSSNEGOTIATE CURLAUTH_NEGOTIATE
815/* Used for CURLOPT_SOCKS5_AUTH to stay terminologically correct */
816#define CURLAUTH_GSSAPI CURLAUTH_NEGOTIATE
817#define CURLAUTH_NTLM (((unsigned long)1)<<3)
818#define CURLAUTH_DIGEST_IE (((unsigned long)1)<<4)
819#define CURLAUTH_NTLM_WB (((unsigned long)1)<<5)
820#define CURLAUTH_BEARER (((unsigned long)1)<<6)
821#define CURLAUTH_AWS_SIGV4 (((unsigned long)1)<<7)
822#define CURLAUTH_ONLY (((unsigned long)1)<<31)
823#define CURLAUTH_ANY (~CURLAUTH_DIGEST_IE)
824#define CURLAUTH_ANYSAFE (~(CURLAUTH_BASIC|CURLAUTH_DIGEST_IE))
825
826#define CURLSSH_AUTH_ANY ~0 /* all types supported by the server */
827#define CURLSSH_AUTH_NONE 0 /* none allowed, silly but complete */
828#define CURLSSH_AUTH_PUBLICKEY (1<<0) /* public/private key files */
829#define CURLSSH_AUTH_PASSWORD (1<<1) /* password */
830#define CURLSSH_AUTH_HOST (1<<2) /* host key files */
831#define CURLSSH_AUTH_KEYBOARD (1<<3) /* keyboard interactive */
832#define CURLSSH_AUTH_AGENT (1<<4) /* agent (ssh-agent, pageant...) */
833#define CURLSSH_AUTH_GSSAPI (1<<5) /* gssapi (kerberos, ...) */
834#define CURLSSH_AUTH_DEFAULT CURLSSH_AUTH_ANY
835
836#define CURLGSSAPI_DELEGATION_NONE 0 /* no delegation (default) */
837#define CURLGSSAPI_DELEGATION_POLICY_FLAG (1<<0) /* if permitted by policy */
838#define CURLGSSAPI_DELEGATION_FLAG (1<<1) /* delegate always */
839
840#define CURL_ERROR_SIZE 256
841
842enum curl_khtype {
843 CURLKHTYPE_UNKNOWN,
844 CURLKHTYPE_RSA1,
845 CURLKHTYPE_RSA,
846 CURLKHTYPE_DSS,
847 CURLKHTYPE_ECDSA,
848 CURLKHTYPE_ED25519
849};
850
851struct curl_khkey {
852 const char *key; /* points to a null-terminated string encoded with base64
853 if len is zero, otherwise to the "raw" data */
854 size_t len;
855 enum curl_khtype keytype;
856};
857
858/* this is the set of return values expected from the curl_sshkeycallback
859 callback */
860enum curl_khstat {
861 CURLKHSTAT_FINE_ADD_TO_FILE,
862 CURLKHSTAT_FINE,
863 CURLKHSTAT_REJECT, /* reject the connection, return an error */
864 CURLKHSTAT_DEFER, /* do not accept it, but we can't answer right now.
865 Causes a CURLE_PEER_FAILED_VERIFICATION error but the
866 connection will be left intact etc */
867 CURLKHSTAT_FINE_REPLACE, /* accept and replace the wrong key */
868 CURLKHSTAT_LAST /* not for use, only a marker for last-in-list */
869};
870
871/* this is the set of status codes pass in to the callback */
872enum curl_khmatch {
873 CURLKHMATCH_OK, /* match */
874 CURLKHMATCH_MISMATCH, /* host found, key mismatch! */
875 CURLKHMATCH_MISSING, /* no matching host/key found */
876 CURLKHMATCH_LAST /* not for use, only a marker for last-in-list */
877};
878
879typedef int
880 (*curl_sshkeycallback) (CURL *easy, /* easy handle */
881 const struct curl_khkey *knownkey, /* known */
882 const struct curl_khkey *foundkey, /* found */
883 enum curl_khmatch, /* libcurl's view on the keys */
884 void *clientp); /* custom pointer passed with */
885 /* CURLOPT_SSH_KEYDATA */
886
887typedef int
888 (*curl_sshhostkeycallback) (void *clientp,/* custom pointer passed */
889 /* with CURLOPT_SSH_HOSTKEYDATA */
890 int keytype, /* CURLKHTYPE */
891 const char *key, /* hostkey to check */
892 size_t keylen); /* length of the key */
893 /* return CURLE_OK to accept */
894 /* or something else to refuse */
895
896
897/* parameter for the CURLOPT_USE_SSL option */
898typedef enum {
899 CURLUSESSL_NONE, /* do not attempt to use SSL */
900 CURLUSESSL_TRY, /* try using SSL, proceed anyway otherwise */
901 CURLUSESSL_CONTROL, /* SSL for the control connection or fail */
902 CURLUSESSL_ALL, /* SSL for all communication or fail */
903 CURLUSESSL_LAST /* not an option, never use */
904} curl_usessl;
905
906/* Definition of bits for the CURLOPT_SSL_OPTIONS argument: */
907
908/* - ALLOW_BEAST tells libcurl to allow the BEAST SSL vulnerability in the
909 name of improving interoperability with older servers. Some SSL libraries
910 have introduced work-arounds for this flaw but those work-arounds sometimes
911 make the SSL communication fail. To regain functionality with those broken
912 servers, a user can this way allow the vulnerability back. */
913#define CURLSSLOPT_ALLOW_BEAST (1<<0)
914
915/* - NO_REVOKE tells libcurl to disable certificate revocation checks for those
916 SSL backends where such behavior is present. */
917#define CURLSSLOPT_NO_REVOKE (1<<1)
918
919/* - NO_PARTIALCHAIN tells libcurl to *NOT* accept a partial certificate chain
920 if possible. The OpenSSL backend has this ability. */
921#define CURLSSLOPT_NO_PARTIALCHAIN (1<<2)
922
923/* - REVOKE_BEST_EFFORT tells libcurl to ignore certificate revocation offline
924 checks and ignore missing revocation list for those SSL backends where such
925 behavior is present. */
926#define CURLSSLOPT_REVOKE_BEST_EFFORT (1<<3)
927
928/* - CURLSSLOPT_NATIVE_CA tells libcurl to use standard certificate store of
929 operating system. Currently implemented under MS-Windows. */
930#define CURLSSLOPT_NATIVE_CA (1<<4)
931
932/* - CURLSSLOPT_AUTO_CLIENT_CERT tells libcurl to automatically locate and use
933 a client certificate for authentication. (Schannel) */
934#define CURLSSLOPT_AUTO_CLIENT_CERT (1<<5)
935
936/* The default connection attempt delay in milliseconds for happy eyeballs.
937 CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 and happy-eyeballs-timeout-ms.d document
938 this value, keep them in sync. */
939#define CURL_HET_DEFAULT 200L
940
941/* The default connection upkeep interval in milliseconds. */
942#define CURL_UPKEEP_INTERVAL_DEFAULT 60000L
943
944#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
945 the obsolete stuff removed! */
946
947/* Backwards compatibility with older names */
948/* These are scheduled to disappear by 2009 */
949
950#define CURLFTPSSL_NONE CURLUSESSL_NONE
951#define CURLFTPSSL_TRY CURLUSESSL_TRY
952#define CURLFTPSSL_CONTROL CURLUSESSL_CONTROL
953#define CURLFTPSSL_ALL CURLUSESSL_ALL
954#define CURLFTPSSL_LAST CURLUSESSL_LAST
955#define curl_ftpssl curl_usessl
956#endif /* !CURL_NO_OLDIES */
957
958/* parameter for the CURLOPT_FTP_SSL_CCC option */
959typedef enum {
960 CURLFTPSSL_CCC_NONE, /* do not send CCC */
961 CURLFTPSSL_CCC_PASSIVE, /* Let the server initiate the shutdown */
962 CURLFTPSSL_CCC_ACTIVE, /* Initiate the shutdown */
963 CURLFTPSSL_CCC_LAST /* not an option, never use */
964} curl_ftpccc;
965
966/* parameter for the CURLOPT_FTPSSLAUTH option */
967typedef enum {
968 CURLFTPAUTH_DEFAULT, /* let libcurl decide */
969 CURLFTPAUTH_SSL, /* use "AUTH SSL" */
970 CURLFTPAUTH_TLS, /* use "AUTH TLS" */
971 CURLFTPAUTH_LAST /* not an option, never use */
972} curl_ftpauth;
973
974/* parameter for the CURLOPT_FTP_CREATE_MISSING_DIRS option */
975typedef enum {
976 CURLFTP_CREATE_DIR_NONE, /* do NOT create missing dirs! */
977 CURLFTP_CREATE_DIR, /* (FTP/SFTP) if CWD fails, try MKD and then CWD
978 again if MKD succeeded, for SFTP this does
979 similar magic */
980 CURLFTP_CREATE_DIR_RETRY, /* (FTP only) if CWD fails, try MKD and then CWD
981 again even if MKD failed! */
982 CURLFTP_CREATE_DIR_LAST /* not an option, never use */
983} curl_ftpcreatedir;
984
985/* parameter for the CURLOPT_FTP_FILEMETHOD option */
986typedef enum {
987 CURLFTPMETHOD_DEFAULT, /* let libcurl pick */
988 CURLFTPMETHOD_MULTICWD, /* single CWD operation for each path part */
989 CURLFTPMETHOD_NOCWD, /* no CWD at all */
990 CURLFTPMETHOD_SINGLECWD, /* one CWD to full dir, then work on file */
991 CURLFTPMETHOD_LAST /* not an option, never use */
992} curl_ftpmethod;
993
994/* bitmask defines for CURLOPT_HEADEROPT */
995#define CURLHEADER_UNIFIED 0
996#define CURLHEADER_SEPARATE (1<<0)
997
998/* CURLALTSVC_* are bits for the CURLOPT_ALTSVC_CTRL option */
999#define CURLALTSVC_READONLYFILE (1<<2)
1000#define CURLALTSVC_H1 (1<<3)
1001#define CURLALTSVC_H2 (1<<4)
1002#define CURLALTSVC_H3 (1<<5)
1003
1004
1005struct curl_hstsentry {
1006 char *name;
1007 size_t namelen;
1008 unsigned int includeSubDomains:1;
1009 char expire[18]; /* YYYYMMDD HH:MM:SS [null-terminated] */
1010};
1011
1012struct curl_index {
1013 size_t index; /* the provided entry's "index" or count */
1014 size_t total; /* total number of entries to save */
1015};
1016
1017typedef enum {
1018 CURLSTS_OK,
1019 CURLSTS_DONE,
1020 CURLSTS_FAIL
1021} CURLSTScode;
1022
1023typedef CURLSTScode (*curl_hstsread_callback)(CURL *easy,
1024 struct curl_hstsentry *e,
1025 void *userp);
1026typedef CURLSTScode (*curl_hstswrite_callback)(CURL *easy,
1027 struct curl_hstsentry *e,
1028 struct curl_index *i,
1029 void *userp);
1030
1031/* CURLHSTS_* are bits for the CURLOPT_HSTS option */
1032#define CURLHSTS_ENABLE (long)(1<<0)
1033#define CURLHSTS_READONLYFILE (long)(1<<1)
1034
1035/* The CURLPROTO_ defines below are for the **deprecated** CURLOPT_*PROTOCOLS
1036 options. Do not use. */
1037#define CURLPROTO_HTTP (1<<0)
1038#define CURLPROTO_HTTPS (1<<1)
1039#define CURLPROTO_FTP (1<<2)
1040#define CURLPROTO_FTPS (1<<3)
1041#define CURLPROTO_SCP (1<<4)
1042#define CURLPROTO_SFTP (1<<5)
1043#define CURLPROTO_TELNET (1<<6)
1044#define CURLPROTO_LDAP (1<<7)
1045#define CURLPROTO_LDAPS (1<<8)
1046#define CURLPROTO_DICT (1<<9)
1047#define CURLPROTO_FILE (1<<10)
1048#define CURLPROTO_TFTP (1<<11)
1049#define CURLPROTO_IMAP (1<<12)
1050#define CURLPROTO_IMAPS (1<<13)
1051#define CURLPROTO_POP3 (1<<14)
1052#define CURLPROTO_POP3S (1<<15)
1053#define CURLPROTO_SMTP (1<<16)
1054#define CURLPROTO_SMTPS (1<<17)
1055#define CURLPROTO_RTSP (1<<18)
1056#define CURLPROTO_RTMP (1<<19)
1057#define CURLPROTO_RTMPT (1<<20)
1058#define CURLPROTO_RTMPE (1<<21)
1059#define CURLPROTO_RTMPTE (1<<22)
1060#define CURLPROTO_RTMPS (1<<23)
1061#define CURLPROTO_RTMPTS (1<<24)
1062#define CURLPROTO_GOPHER (1<<25)
1063#define CURLPROTO_SMB (1<<26)
1064#define CURLPROTO_SMBS (1<<27)
1065#define CURLPROTO_MQTT (1<<28)
1066#define CURLPROTO_GOPHERS (1<<29)
1067#define CURLPROTO_ALL (~0) /* enable everything */
1068
1069/* long may be 32 or 64 bits, but we should never depend on anything else
1070 but 32 */
1071#define CURLOPTTYPE_LONG 0
1072#define CURLOPTTYPE_OBJECTPOINT 10000
1073#define CURLOPTTYPE_FUNCTIONPOINT 20000
1074#define CURLOPTTYPE_OFF_T 30000
1075#define CURLOPTTYPE_BLOB 40000
1076
1077/* *STRINGPOINT is an alias for OBJECTPOINT to allow tools to extract the
1078 string options from the header file */
1079
1080
1081#define CURLOPT(na,t,nu) na = t + nu
1082#define CURLOPTDEPRECATED(na,t,nu,v,m) na CURL_DEPRECATED(v,m) = t + nu
1083
1084/* CURLOPT aliases that make no run-time difference */
1085
1086/* 'char *' argument to a string with a trailing zero */
1087#define CURLOPTTYPE_STRINGPOINT CURLOPTTYPE_OBJECTPOINT
1088
1089/* 'struct curl_slist *' argument */
1090#define CURLOPTTYPE_SLISTPOINT CURLOPTTYPE_OBJECTPOINT
1091
1092/* 'void *' argument passed untouched to callback */
1093#define CURLOPTTYPE_CBPOINT CURLOPTTYPE_OBJECTPOINT
1094
1095/* 'long' argument with a set of values/bitmask */
1096#define CURLOPTTYPE_VALUES CURLOPTTYPE_LONG
1097
1098/*
1099 * All CURLOPT_* values.
1100 */
1101
1102typedef enum {
1103 /* This is the FILE * or void * the regular output should be written to. */
1104 CURLOPT(CURLOPT_WRITEDATA, CURLOPTTYPE_CBPOINT, 1),
1105
1106 /* The full URL to get/put */
1107 CURLOPT(CURLOPT_URL, CURLOPTTYPE_STRINGPOINT, 2),
1108
1109 /* Port number to connect to, if other than default. */
1110 CURLOPT(CURLOPT_PORT, CURLOPTTYPE_LONG, 3),
1111
1112 /* Name of proxy to use. */
1113 CURLOPT(CURLOPT_PROXY, CURLOPTTYPE_STRINGPOINT, 4),
1114
1115 /* "user:password;options" to use when fetching. */
1116 CURLOPT(CURLOPT_USERPWD, CURLOPTTYPE_STRINGPOINT, 5),
1117
1118 /* "user:password" to use with proxy. */
1119 CURLOPT(CURLOPT_PROXYUSERPWD, CURLOPTTYPE_STRINGPOINT, 6),
1120
1121 /* Range to get, specified as an ASCII string. */
1122 CURLOPT(CURLOPT_RANGE, CURLOPTTYPE_STRINGPOINT, 7),
1123
1124 /* not used */
1125
1126 /* Specified file stream to upload from (use as input): */
1127 CURLOPT(CURLOPT_READDATA, CURLOPTTYPE_CBPOINT, 9),
1128
1129 /* Buffer to receive error messages in, must be at least CURL_ERROR_SIZE
1130 * bytes big. */
1131 CURLOPT(CURLOPT_ERRORBUFFER, CURLOPTTYPE_OBJECTPOINT, 10),
1132
1133 /* Function that will be called to store the output (instead of fwrite). The
1134 * parameters will use fwrite() syntax, make sure to follow them. */
1135 CURLOPT(CURLOPT_WRITEFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 11),
1136
1137 /* Function that will be called to read the input (instead of fread). The
1138 * parameters will use fread() syntax, make sure to follow them. */
1139 CURLOPT(CURLOPT_READFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 12),
1140
1141 /* Time-out the read operation after this amount of seconds */
1142 CURLOPT(CURLOPT_TIMEOUT, CURLOPTTYPE_LONG, 13),
1143
1144 /* If CURLOPT_READDATA is used, this can be used to inform libcurl about
1145 * how large the file being sent really is. That allows better error
1146 * checking and better verifies that the upload was successful. -1 means
1147 * unknown size.
1148 *
1149 * For large file support, there is also a _LARGE version of the key
1150 * which takes an off_t type, allowing platforms with larger off_t
1151 * sizes to handle larger files. See below for INFILESIZE_LARGE.
1152 */
1153 CURLOPT(CURLOPT_INFILESIZE, CURLOPTTYPE_LONG, 14),
1154
1155 /* POST static input fields. */
1156 CURLOPT(CURLOPT_POSTFIELDS, CURLOPTTYPE_OBJECTPOINT, 15),
1157
1158 /* Set the referrer page (needed by some CGIs) */
1159 CURLOPT(CURLOPT_REFERER, CURLOPTTYPE_STRINGPOINT, 16),
1160
1161 /* Set the FTP PORT string (interface name, named or numerical IP address)
1162 Use i.e '-' to use default address. */
1163 CURLOPT(CURLOPT_FTPPORT, CURLOPTTYPE_STRINGPOINT, 17),
1164
1165 /* Set the User-Agent string (examined by some CGIs) */
1166 CURLOPT(CURLOPT_USERAGENT, CURLOPTTYPE_STRINGPOINT, 18),
1167
1168 /* If the download receives less than "low speed limit" bytes/second
1169 * during "low speed time" seconds, the operations is aborted.
1170 * You could i.e if you have a pretty high speed connection, abort if
1171 * it is less than 2000 bytes/sec during 20 seconds.
1172 */
1173
1174 /* Set the "low speed limit" */
1175 CURLOPT(CURLOPT_LOW_SPEED_LIMIT, CURLOPTTYPE_LONG, 19),
1176
1177 /* Set the "low speed time" */
1178 CURLOPT(CURLOPT_LOW_SPEED_TIME, CURLOPTTYPE_LONG, 20),
1179
1180 /* Set the continuation offset.
1181 *
1182 * Note there is also a _LARGE version of this key which uses
1183 * off_t types, allowing for large file offsets on platforms which
1184 * use larger-than-32-bit off_t's. Look below for RESUME_FROM_LARGE.
1185 */
1186 CURLOPT(CURLOPT_RESUME_FROM, CURLOPTTYPE_LONG, 21),
1187
1188 /* Set cookie in request: */
1189 CURLOPT(CURLOPT_COOKIE, CURLOPTTYPE_STRINGPOINT, 22),
1190
1191 /* This points to a linked list of headers, struct curl_slist kind. This
1192 list is also used for RTSP (in spite of its name) */
1193 CURLOPT(CURLOPT_HTTPHEADER, CURLOPTTYPE_SLISTPOINT, 23),
1194
1195 /* This points to a linked list of post entries, struct curl_httppost */
1196 CURLOPTDEPRECATED(CURLOPT_HTTPPOST, CURLOPTTYPE_OBJECTPOINT, 24,
1197 7.56.0, "Use CURLOPT_MIMEPOST"),
1198
1199 /* name of the file keeping your private SSL-certificate */
1200 CURLOPT(CURLOPT_SSLCERT, CURLOPTTYPE_STRINGPOINT, 25),
1201
1202 /* password for the SSL or SSH private key */
1203 CURLOPT(CURLOPT_KEYPASSWD, CURLOPTTYPE_STRINGPOINT, 26),
1204
1205 /* send TYPE parameter? */
1206 CURLOPT(CURLOPT_CRLF, CURLOPTTYPE_LONG, 27),
1207
1208 /* send linked-list of QUOTE commands */
1209 CURLOPT(CURLOPT_QUOTE, CURLOPTTYPE_SLISTPOINT, 28),
1210
1211 /* send FILE * or void * to store headers to, if you use a callback it
1212 is simply passed to the callback unmodified */
1213 CURLOPT(CURLOPT_HEADERDATA, CURLOPTTYPE_CBPOINT, 29),
1214
1215 /* point to a file to read the initial cookies from, also enables
1216 "cookie awareness" */
1217 CURLOPT(CURLOPT_COOKIEFILE, CURLOPTTYPE_STRINGPOINT, 31),
1218
1219 /* What version to specifically try to use.
1220 See CURL_SSLVERSION defines below. */
1221 CURLOPT(CURLOPT_SSLVERSION, CURLOPTTYPE_VALUES, 32),
1222
1223 /* What kind of HTTP time condition to use, see defines */
1224 CURLOPT(CURLOPT_TIMECONDITION, CURLOPTTYPE_VALUES, 33),
1225
1226 /* Time to use with the above condition. Specified in number of seconds
1227 since 1 Jan 1970 */
1228 CURLOPT(CURLOPT_TIMEVALUE, CURLOPTTYPE_LONG, 34),
1229
1230 /* 35 = OBSOLETE */
1231
1232 /* Custom request, for customizing the get command like
1233 HTTP: DELETE, TRACE and others
1234 FTP: to use a different list command
1235 */
1236 CURLOPT(CURLOPT_CUSTOMREQUEST, CURLOPTTYPE_STRINGPOINT, 36),
1237
1238 /* FILE handle to use instead of stderr */
1239 CURLOPT(CURLOPT_STDERR, CURLOPTTYPE_OBJECTPOINT, 37),
1240
1241 /* 38 is not used */
1242
1243 /* send linked-list of post-transfer QUOTE commands */
1244 CURLOPT(CURLOPT_POSTQUOTE, CURLOPTTYPE_SLISTPOINT, 39),
1245
1246 /* OBSOLETE, do not use! */
1247 CURLOPT(CURLOPT_OBSOLETE40, CURLOPTTYPE_OBJECTPOINT, 40),
1248
1249 /* talk a lot */
1250 CURLOPT(CURLOPT_VERBOSE, CURLOPTTYPE_LONG, 41),
1251
1252 /* throw the header out too */
1253 CURLOPT(CURLOPT_HEADER, CURLOPTTYPE_LONG, 42),
1254
1255 /* shut off the progress meter */
1256 CURLOPT(CURLOPT_NOPROGRESS, CURLOPTTYPE_LONG, 43),
1257
1258 /* use HEAD to get http document */
1259 CURLOPT(CURLOPT_NOBODY, CURLOPTTYPE_LONG, 44),
1260
1261 /* no output on http error codes >= 400 */
1262 CURLOPT(CURLOPT_FAILONERROR, CURLOPTTYPE_LONG, 45),
1263
1264 /* this is an upload */
1265 CURLOPT(CURLOPT_UPLOAD, CURLOPTTYPE_LONG, 46),
1266
1267 /* HTTP POST method */
1268 CURLOPT(CURLOPT_POST, CURLOPTTYPE_LONG, 47),
1269
1270 /* bare names when listing directories */
1271 CURLOPT(CURLOPT_DIRLISTONLY, CURLOPTTYPE_LONG, 48),
1272
1273 /* Append instead of overwrite on upload! */
1274 CURLOPT(CURLOPT_APPEND, CURLOPTTYPE_LONG, 50),
1275
1276 /* Specify whether to read the user+password from the .netrc or the URL.
1277 * This must be one of the CURL_NETRC_* enums below. */
1278 CURLOPT(CURLOPT_NETRC, CURLOPTTYPE_VALUES, 51),
1279
1280 /* use Location: Luke! */
1281 CURLOPT(CURLOPT_FOLLOWLOCATION, CURLOPTTYPE_LONG, 52),
1282
1283 /* transfer data in text/ASCII format */
1284 CURLOPT(CURLOPT_TRANSFERTEXT, CURLOPTTYPE_LONG, 53),
1285
1286 /* HTTP PUT */
1287 CURLOPTDEPRECATED(CURLOPT_PUT, CURLOPTTYPE_LONG, 54,
1288 7.12.1, "Use CURLOPT_UPLOAD"),
1289
1290 /* 55 = OBSOLETE */
1291
1292 /* DEPRECATED
1293 * Function that will be called instead of the internal progress display
1294 * function. This function should be defined as the curl_progress_callback
1295 * prototype defines. */
1296 CURLOPTDEPRECATED(CURLOPT_PROGRESSFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 56,
1297 7.32.0, "Use CURLOPT_XFERINFOFUNCTION"),
1298
1299 /* Data passed to the CURLOPT_PROGRESSFUNCTION and CURLOPT_XFERINFOFUNCTION
1300 callbacks */
1301 CURLOPT(CURLOPT_XFERINFODATA, CURLOPTTYPE_CBPOINT, 57),
1302#define CURLOPT_PROGRESSDATA CURLOPT_XFERINFODATA
1303
1304 /* We want the referrer field set automatically when following locations */
1305 CURLOPT(CURLOPT_AUTOREFERER, CURLOPTTYPE_LONG, 58),
1306
1307 /* Port of the proxy, can be set in the proxy string as well with:
1308 "[host]:[port]" */
1309 CURLOPT(CURLOPT_PROXYPORT, CURLOPTTYPE_LONG, 59),
1310
1311 /* size of the POST input data, if strlen() is not good to use */
1312 CURLOPT(CURLOPT_POSTFIELDSIZE, CURLOPTTYPE_LONG, 60),
1313
1314 /* tunnel non-http operations through an HTTP proxy */
1315 CURLOPT(CURLOPT_HTTPPROXYTUNNEL, CURLOPTTYPE_LONG, 61),
1316
1317 /* Set the interface string to use as outgoing network interface */
1318 CURLOPT(CURLOPT_INTERFACE, CURLOPTTYPE_STRINGPOINT, 62),
1319
1320 /* Set the krb4/5 security level, this also enables krb4/5 awareness. This
1321 * is a string, 'clear', 'safe', 'confidential' or 'private'. If the string
1322 * is set but doesn't match one of these, 'private' will be used. */
1323 CURLOPT(CURLOPT_KRBLEVEL, CURLOPTTYPE_STRINGPOINT, 63),
1324
1325 /* Set if we should verify the peer in ssl handshake, set 1 to verify. */
1326 CURLOPT(CURLOPT_SSL_VERIFYPEER, CURLOPTTYPE_LONG, 64),
1327
1328 /* The CApath or CAfile used to validate the peer certificate
1329 this option is used only if SSL_VERIFYPEER is true */
1330 CURLOPT(CURLOPT_CAINFO, CURLOPTTYPE_STRINGPOINT, 65),
1331
1332 /* 66 = OBSOLETE */
1333 /* 67 = OBSOLETE */
1334
1335 /* Maximum number of http redirects to follow */
1336 CURLOPT(CURLOPT_MAXREDIRS, CURLOPTTYPE_LONG, 68),
1337
1338 /* Pass a long set to 1 to get the date of the requested document (if
1339 possible)! Pass a zero to shut it off. */
1340 CURLOPT(CURLOPT_FILETIME, CURLOPTTYPE_LONG, 69),
1341
1342 /* This points to a linked list of telnet options */
1343 CURLOPT(CURLOPT_TELNETOPTIONS, CURLOPTTYPE_SLISTPOINT, 70),
1344
1345 /* Max amount of cached alive connections */
1346 CURLOPT(CURLOPT_MAXCONNECTS, CURLOPTTYPE_LONG, 71),
1347
1348 /* OBSOLETE, do not use! */
1349 CURLOPT(CURLOPT_OBSOLETE72, CURLOPTTYPE_LONG, 72),
1350
1351 /* 73 = OBSOLETE */
1352
1353 /* Set to explicitly use a new connection for the upcoming transfer.
1354 Do not use this unless you're absolutely sure of this, as it makes the
1355 operation slower and is less friendly for the network. */
1356 CURLOPT(CURLOPT_FRESH_CONNECT, CURLOPTTYPE_LONG, 74),
1357
1358 /* Set to explicitly forbid the upcoming transfer's connection to be reused
1359 when done. Do not use this unless you're absolutely sure of this, as it
1360 makes the operation slower and is less friendly for the network. */
1361 CURLOPT(CURLOPT_FORBID_REUSE, CURLOPTTYPE_LONG, 75),
1362
1363 /* Set to a file name that contains random data for libcurl to use to
1364 seed the random engine when doing SSL connects. */
1365 CURLOPTDEPRECATED(CURLOPT_RANDOM_FILE, CURLOPTTYPE_STRINGPOINT, 76,
1366 7.84.0, "Serves no purpose anymore"),
1367
1368 /* Set to the Entropy Gathering Daemon socket pathname */
1369 CURLOPTDEPRECATED(CURLOPT_EGDSOCKET, CURLOPTTYPE_STRINGPOINT, 77,
1370 7.84.0, "Serves no purpose anymore"),
1371
1372 /* Time-out connect operations after this amount of seconds, if connects are
1373 OK within this time, then fine... This only aborts the connect phase. */
1374 CURLOPT(CURLOPT_CONNECTTIMEOUT, CURLOPTTYPE_LONG, 78),
1375
1376 /* Function that will be called to store headers (instead of fwrite). The
1377 * parameters will use fwrite() syntax, make sure to follow them. */
1378 CURLOPT(CURLOPT_HEADERFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 79),
1379
1380 /* Set this to force the HTTP request to get back to GET. Only really usable
1381 if POST, PUT or a custom request have been used first.
1382 */
1383 CURLOPT(CURLOPT_HTTPGET, CURLOPTTYPE_LONG, 80),
1384
1385 /* Set if we should verify the Common name from the peer certificate in ssl
1386 * handshake, set 1 to check existence, 2 to ensure that it matches the
1387 * provided hostname. */
1388 CURLOPT(CURLOPT_SSL_VERIFYHOST, CURLOPTTYPE_LONG, 81),
1389
1390 /* Specify which file name to write all known cookies in after completed
1391 operation. Set file name to "-" (dash) to make it go to stdout. */
1392 CURLOPT(CURLOPT_COOKIEJAR, CURLOPTTYPE_STRINGPOINT, 82),
1393
1394 /* Specify which SSL ciphers to use */
1395 CURLOPT(CURLOPT_SSL_CIPHER_LIST, CURLOPTTYPE_STRINGPOINT, 83),
1396
1397 /* Specify which HTTP version to use! This must be set to one of the
1398 CURL_HTTP_VERSION* enums set below. */
1399 CURLOPT(CURLOPT_HTTP_VERSION, CURLOPTTYPE_VALUES, 84),
1400
1401 /* Specifically switch on or off the FTP engine's use of the EPSV command. By
1402 default, that one will always be attempted before the more traditional
1403 PASV command. */
1404 CURLOPT(CURLOPT_FTP_USE_EPSV, CURLOPTTYPE_LONG, 85),
1405
1406 /* type of the file keeping your SSL-certificate ("DER", "PEM", "ENG") */
1407 CURLOPT(CURLOPT_SSLCERTTYPE, CURLOPTTYPE_STRINGPOINT, 86),
1408
1409 /* name of the file keeping your private SSL-key */
1410 CURLOPT(CURLOPT_SSLKEY, CURLOPTTYPE_STRINGPOINT, 87),
1411
1412 /* type of the file keeping your private SSL-key ("DER", "PEM", "ENG") */
1413 CURLOPT(CURLOPT_SSLKEYTYPE, CURLOPTTYPE_STRINGPOINT, 88),
1414
1415 /* crypto engine for the SSL-sub system */
1416 CURLOPT(CURLOPT_SSLENGINE, CURLOPTTYPE_STRINGPOINT, 89),
1417
1418 /* set the crypto engine for the SSL-sub system as default
1419 the param has no meaning...
1420 */
1421 CURLOPT(CURLOPT_SSLENGINE_DEFAULT, CURLOPTTYPE_LONG, 90),
1422
1423 /* Non-zero value means to use the global dns cache */
1424 /* DEPRECATED, do not use! */
1425 CURLOPTDEPRECATED(CURLOPT_DNS_USE_GLOBAL_CACHE, CURLOPTTYPE_LONG, 91,
1426 7.11.1, "Use CURLOPT_SHARE"),
1427
1428 /* DNS cache timeout */
1429 CURLOPT(CURLOPT_DNS_CACHE_TIMEOUT, CURLOPTTYPE_LONG, 92),
1430
1431 /* send linked-list of pre-transfer QUOTE commands */
1432 CURLOPT(CURLOPT_PREQUOTE, CURLOPTTYPE_SLISTPOINT, 93),
1433
1434 /* set the debug function */
1435 CURLOPT(CURLOPT_DEBUGFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 94),
1436
1437 /* set the data for the debug function */
1438 CURLOPT(CURLOPT_DEBUGDATA, CURLOPTTYPE_CBPOINT, 95),
1439
1440 /* mark this as start of a cookie session */
1441 CURLOPT(CURLOPT_COOKIESESSION, CURLOPTTYPE_LONG, 96),
1442
1443 /* The CApath directory used to validate the peer certificate
1444 this option is used only if SSL_VERIFYPEER is true */
1445 CURLOPT(CURLOPT_CAPATH, CURLOPTTYPE_STRINGPOINT, 97),
1446
1447 /* Instruct libcurl to use a smaller receive buffer */
1448 CURLOPT(CURLOPT_BUFFERSIZE, CURLOPTTYPE_LONG, 98),
1449
1450 /* Instruct libcurl to not use any signal/alarm handlers, even when using
1451 timeouts. This option is useful for multi-threaded applications.
1452 See libcurl-the-guide for more background information. */
1453 CURLOPT(CURLOPT_NOSIGNAL, CURLOPTTYPE_LONG, 99),
1454
1455 /* Provide a CURLShare for mutexing non-ts data */
1456 CURLOPT(CURLOPT_SHARE, CURLOPTTYPE_OBJECTPOINT, 100),
1457
1458 /* indicates type of proxy. accepted values are CURLPROXY_HTTP (default),
1459 CURLPROXY_HTTPS, CURLPROXY_SOCKS4, CURLPROXY_SOCKS4A and
1460 CURLPROXY_SOCKS5. */
1461 CURLOPT(CURLOPT_PROXYTYPE, CURLOPTTYPE_VALUES, 101),
1462
1463 /* Set the Accept-Encoding string. Use this to tell a server you would like
1464 the response to be compressed. Before 7.21.6, this was known as
1465 CURLOPT_ENCODING */
1466 CURLOPT(CURLOPT_ACCEPT_ENCODING, CURLOPTTYPE_STRINGPOINT, 102),
1467
1468 /* Set pointer to private data */
1469 CURLOPT(CURLOPT_PRIVATE, CURLOPTTYPE_OBJECTPOINT, 103),
1470
1471 /* Set aliases for HTTP 200 in the HTTP Response header */
1472 CURLOPT(CURLOPT_HTTP200ALIASES, CURLOPTTYPE_SLISTPOINT, 104),
1473
1474 /* Continue to send authentication (user+password) when following locations,
1475 even when hostname changed. This can potentially send off the name
1476 and password to whatever host the server decides. */
1477 CURLOPT(CURLOPT_UNRESTRICTED_AUTH, CURLOPTTYPE_LONG, 105),
1478
1479 /* Specifically switch on or off the FTP engine's use of the EPRT command (
1480 it also disables the LPRT attempt). By default, those ones will always be
1481 attempted before the good old traditional PORT command. */
1482 CURLOPT(CURLOPT_FTP_USE_EPRT, CURLOPTTYPE_LONG, 106),
1483
1484 /* Set this to a bitmask value to enable the particular authentications
1485 methods you like. Use this in combination with CURLOPT_USERPWD.
1486 Note that setting multiple bits may cause extra network round-trips. */
1487 CURLOPT(CURLOPT_HTTPAUTH, CURLOPTTYPE_VALUES, 107),
1488
1489 /* Set the ssl context callback function, currently only for OpenSSL or
1490 WolfSSL ssl_ctx, or mbedTLS mbedtls_ssl_config in the second argument.
1491 The function must match the curl_ssl_ctx_callback prototype. */
1492 CURLOPT(CURLOPT_SSL_CTX_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 108),
1493
1494 /* Set the userdata for the ssl context callback function's third
1495 argument */
1496 CURLOPT(CURLOPT_SSL_CTX_DATA, CURLOPTTYPE_CBPOINT, 109),
1497
1498 /* FTP Option that causes missing dirs to be created on the remote server.
1499 In 7.19.4 we introduced the convenience enums for this option using the
1500 CURLFTP_CREATE_DIR prefix.
1501 */
1502 CURLOPT(CURLOPT_FTP_CREATE_MISSING_DIRS, CURLOPTTYPE_LONG, 110),
1503
1504 /* Set this to a bitmask value to enable the particular authentications
1505 methods you like. Use this in combination with CURLOPT_PROXYUSERPWD.
1506 Note that setting multiple bits may cause extra network round-trips. */
1507 CURLOPT(CURLOPT_PROXYAUTH, CURLOPTTYPE_VALUES, 111),
1508
1509 /* Option that changes the timeout, in seconds, associated with getting a
1510 response. This is different from transfer timeout time and essentially
1511 places a demand on the server to acknowledge commands in a timely
1512 manner. For FTP, SMTP, IMAP and POP3. */
1513 CURLOPT(CURLOPT_SERVER_RESPONSE_TIMEOUT, CURLOPTTYPE_LONG, 112),
1514
1515 /* Set this option to one of the CURL_IPRESOLVE_* defines (see below) to
1516 tell libcurl to use those IP versions only. This only has effect on
1517 systems with support for more than one, i.e IPv4 _and_ IPv6. */
1518 CURLOPT(CURLOPT_IPRESOLVE, CURLOPTTYPE_VALUES, 113),
1519
1520 /* Set this option to limit the size of a file that will be downloaded from
1521 an HTTP or FTP server.
1522
1523 Note there is also _LARGE version which adds large file support for
1524 platforms which have larger off_t sizes. See MAXFILESIZE_LARGE below. */
1525 CURLOPT(CURLOPT_MAXFILESIZE, CURLOPTTYPE_LONG, 114),
1526
1527 /* See the comment for INFILESIZE above, but in short, specifies
1528 * the size of the file being uploaded. -1 means unknown.
1529 */
1530 CURLOPT(CURLOPT_INFILESIZE_LARGE, CURLOPTTYPE_OFF_T, 115),
1531
1532 /* Sets the continuation offset. There is also a CURLOPTTYPE_LONG version
1533 * of this; look above for RESUME_FROM.
1534 */
1535 CURLOPT(CURLOPT_RESUME_FROM_LARGE, CURLOPTTYPE_OFF_T, 116),
1536
1537 /* Sets the maximum size of data that will be downloaded from
1538 * an HTTP or FTP server. See MAXFILESIZE above for the LONG version.
1539 */
1540 CURLOPT(CURLOPT_MAXFILESIZE_LARGE, CURLOPTTYPE_OFF_T, 117),
1541
1542 /* Set this option to the file name of your .netrc file you want libcurl
1543 to parse (using the CURLOPT_NETRC option). If not set, libcurl will do
1544 a poor attempt to find the user's home directory and check for a .netrc
1545 file in there. */
1546 CURLOPT(CURLOPT_NETRC_FILE, CURLOPTTYPE_STRINGPOINT, 118),
1547
1548 /* Enable SSL/TLS for FTP, pick one of:
1549 CURLUSESSL_TRY - try using SSL, proceed anyway otherwise
1550 CURLUSESSL_CONTROL - SSL for the control connection or fail
1551 CURLUSESSL_ALL - SSL for all communication or fail
1552 */
1553 CURLOPT(CURLOPT_USE_SSL, CURLOPTTYPE_VALUES, 119),
1554
1555 /* The _LARGE version of the standard POSTFIELDSIZE option */
1556 CURLOPT(CURLOPT_POSTFIELDSIZE_LARGE, CURLOPTTYPE_OFF_T, 120),
1557
1558 /* Enable/disable the TCP Nagle algorithm */
1559 CURLOPT(CURLOPT_TCP_NODELAY, CURLOPTTYPE_LONG, 121),
1560
1561 /* 122 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
1562 /* 123 OBSOLETE. Gone in 7.16.0 */
1563 /* 124 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
1564 /* 125 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
1565 /* 126 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
1566 /* 127 OBSOLETE. Gone in 7.16.0 */
1567 /* 128 OBSOLETE. Gone in 7.16.0 */
1568
1569 /* When FTP over SSL/TLS is selected (with CURLOPT_USE_SSL), this option
1570 can be used to change libcurl's default action which is to first try
1571 "AUTH SSL" and then "AUTH TLS" in this order, and proceed when a OK
1572 response has been received.
1573
1574 Available parameters are:
1575 CURLFTPAUTH_DEFAULT - let libcurl decide
1576 CURLFTPAUTH_SSL - try "AUTH SSL" first, then TLS
1577 CURLFTPAUTH_TLS - try "AUTH TLS" first, then SSL
1578 */
1579 CURLOPT(CURLOPT_FTPSSLAUTH, CURLOPTTYPE_VALUES, 129),
1580
1581 CURLOPTDEPRECATED(CURLOPT_IOCTLFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 130,
1582 7.18.0, "Use CURLOPT_SEEKFUNCTION"),
1583 CURLOPTDEPRECATED(CURLOPT_IOCTLDATA, CURLOPTTYPE_CBPOINT, 131,
1584 7.18.0, "Use CURLOPT_SEEKDATA"),
1585
1586 /* 132 OBSOLETE. Gone in 7.16.0 */
1587 /* 133 OBSOLETE. Gone in 7.16.0 */
1588
1589 /* null-terminated string for pass on to the FTP server when asked for
1590 "account" info */
1591 CURLOPT(CURLOPT_FTP_ACCOUNT, CURLOPTTYPE_STRINGPOINT, 134),
1592
1593 /* feed cookie into cookie engine */
1594 CURLOPT(CURLOPT_COOKIELIST, CURLOPTTYPE_STRINGPOINT, 135),
1595
1596 /* ignore Content-Length */
1597 CURLOPT(CURLOPT_IGNORE_CONTENT_LENGTH, CURLOPTTYPE_LONG, 136),
1598
1599 /* Set to non-zero to skip the IP address received in a 227 PASV FTP server
1600 response. Typically used for FTP-SSL purposes but is not restricted to
1601 that. libcurl will then instead use the same IP address it used for the
1602 control connection. */
1603 CURLOPT(CURLOPT_FTP_SKIP_PASV_IP, CURLOPTTYPE_LONG, 137),
1604
1605 /* Select "file method" to use when doing FTP, see the curl_ftpmethod
1606 above. */
1607 CURLOPT(CURLOPT_FTP_FILEMETHOD, CURLOPTTYPE_VALUES, 138),
1608
1609 /* Local port number to bind the socket to */
1610 CURLOPT(CURLOPT_LOCALPORT, CURLOPTTYPE_LONG, 139),
1611
1612 /* Number of ports to try, including the first one set with LOCALPORT.
1613 Thus, setting it to 1 will make no additional attempts but the first.
1614 */
1615 CURLOPT(CURLOPT_LOCALPORTRANGE, CURLOPTTYPE_LONG, 140),
1616
1617 /* no transfer, set up connection and let application use the socket by
1618 extracting it with CURLINFO_LASTSOCKET */
1619 CURLOPT(CURLOPT_CONNECT_ONLY, CURLOPTTYPE_LONG, 141),
1620
1621 /* Function that will be called to convert from the
1622 network encoding (instead of using the iconv calls in libcurl) */
1623 CURLOPTDEPRECATED(CURLOPT_CONV_FROM_NETWORK_FUNCTION,
1624 CURLOPTTYPE_FUNCTIONPOINT, 142,
1625 7.82.0, "Serves no purpose anymore"),
1626
1627 /* Function that will be called to convert to the
1628 network encoding (instead of using the iconv calls in libcurl) */
1629 CURLOPTDEPRECATED(CURLOPT_CONV_TO_NETWORK_FUNCTION,
1630 CURLOPTTYPE_FUNCTIONPOINT, 143,
1631 7.82.0, "Serves no purpose anymore"),
1632
1633 /* Function that will be called to convert from UTF8
1634 (instead of using the iconv calls in libcurl)
1635 Note that this is used only for SSL certificate processing */
1636 CURLOPTDEPRECATED(CURLOPT_CONV_FROM_UTF8_FUNCTION,
1637 CURLOPTTYPE_FUNCTIONPOINT, 144,
1638 7.82.0, "Serves no purpose anymore"),
1639
1640 /* if the connection proceeds too quickly then need to slow it down */
1641 /* limit-rate: maximum number of bytes per second to send or receive */
1642 CURLOPT(CURLOPT_MAX_SEND_SPEED_LARGE, CURLOPTTYPE_OFF_T, 145),
1643 CURLOPT(CURLOPT_MAX_RECV_SPEED_LARGE, CURLOPTTYPE_OFF_T, 146),
1644
1645 /* Pointer to command string to send if USER/PASS fails. */
1646 CURLOPT(CURLOPT_FTP_ALTERNATIVE_TO_USER, CURLOPTTYPE_STRINGPOINT, 147),
1647
1648 /* callback function for setting socket options */
1649 CURLOPT(CURLOPT_SOCKOPTFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 148),
1650 CURLOPT(CURLOPT_SOCKOPTDATA, CURLOPTTYPE_CBPOINT, 149),
1651
1652 /* set to 0 to disable session ID reuse for this transfer, default is
1653 enabled (== 1) */
1654 CURLOPT(CURLOPT_SSL_SESSIONID_CACHE, CURLOPTTYPE_LONG, 150),
1655
1656 /* allowed SSH authentication methods */
1657 CURLOPT(CURLOPT_SSH_AUTH_TYPES, CURLOPTTYPE_VALUES, 151),
1658
1659 /* Used by scp/sftp to do public/private key authentication */
1660 CURLOPT(CURLOPT_SSH_PUBLIC_KEYFILE, CURLOPTTYPE_STRINGPOINT, 152),
1661 CURLOPT(CURLOPT_SSH_PRIVATE_KEYFILE, CURLOPTTYPE_STRINGPOINT, 153),
1662
1663 /* Send CCC (Clear Command Channel) after authentication */
1664 CURLOPT(CURLOPT_FTP_SSL_CCC, CURLOPTTYPE_LONG, 154),
1665
1666 /* Same as TIMEOUT and CONNECTTIMEOUT, but with ms resolution */
1667 CURLOPT(CURLOPT_TIMEOUT_MS, CURLOPTTYPE_LONG, 155),
1668 CURLOPT(CURLOPT_CONNECTTIMEOUT_MS, CURLOPTTYPE_LONG, 156),
1669
1670 /* set to zero to disable the libcurl's decoding and thus pass the raw body
1671 data to the application even when it is encoded/compressed */
1672 CURLOPT(CURLOPT_HTTP_TRANSFER_DECODING, CURLOPTTYPE_LONG, 157),
1673 CURLOPT(CURLOPT_HTTP_CONTENT_DECODING, CURLOPTTYPE_LONG, 158),
1674
1675 /* Permission used when creating new files and directories on the remote
1676 server for protocols that support it, SFTP/SCP/FILE */
1677 CURLOPT(CURLOPT_NEW_FILE_PERMS, CURLOPTTYPE_LONG, 159),
1678 CURLOPT(CURLOPT_NEW_DIRECTORY_PERMS, CURLOPTTYPE_LONG, 160),
1679
1680 /* Set the behavior of POST when redirecting. Values must be set to one
1681 of CURL_REDIR* defines below. This used to be called CURLOPT_POST301 */
1682 CURLOPT(CURLOPT_POSTREDIR, CURLOPTTYPE_VALUES, 161),
1683
1684 /* used by scp/sftp to verify the host's public key */
1685 CURLOPT(CURLOPT_SSH_HOST_PUBLIC_KEY_MD5, CURLOPTTYPE_STRINGPOINT, 162),
1686
1687 /* Callback function for opening socket (instead of socket(2)). Optionally,
1688 callback is able change the address or refuse to connect returning
1689 CURL_SOCKET_BAD. The callback should have type
1690 curl_opensocket_callback */
1691 CURLOPT(CURLOPT_OPENSOCKETFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 163),
1692 CURLOPT(CURLOPT_OPENSOCKETDATA, CURLOPTTYPE_CBPOINT, 164),
1693
1694 /* POST volatile input fields. */
1695 CURLOPT(CURLOPT_COPYPOSTFIELDS, CURLOPTTYPE_OBJECTPOINT, 165),
1696
1697 /* set transfer mode (;type=<a|i>) when doing FTP via an HTTP proxy */
1698 CURLOPT(CURLOPT_PROXY_TRANSFER_MODE, CURLOPTTYPE_LONG, 166),
1699
1700 /* Callback function for seeking in the input stream */
1701 CURLOPT(CURLOPT_SEEKFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 167),
1702 CURLOPT(CURLOPT_SEEKDATA, CURLOPTTYPE_CBPOINT, 168),
1703
1704 /* CRL file */
1705 CURLOPT(CURLOPT_CRLFILE, CURLOPTTYPE_STRINGPOINT, 169),
1706
1707 /* Issuer certificate */
1708 CURLOPT(CURLOPT_ISSUERCERT, CURLOPTTYPE_STRINGPOINT, 170),
1709
1710 /* (IPv6) Address scope */
1711 CURLOPT(CURLOPT_ADDRESS_SCOPE, CURLOPTTYPE_LONG, 171),
1712
1713 /* Collect certificate chain info and allow it to get retrievable with
1714 CURLINFO_CERTINFO after the transfer is complete. */
1715 CURLOPT(CURLOPT_CERTINFO, CURLOPTTYPE_LONG, 172),
1716
1717 /* "name" and "pwd" to use when fetching. */
1718 CURLOPT(CURLOPT_USERNAME, CURLOPTTYPE_STRINGPOINT, 173),
1719 CURLOPT(CURLOPT_PASSWORD, CURLOPTTYPE_STRINGPOINT, 174),
1720
1721 /* "name" and "pwd" to use with Proxy when fetching. */
1722 CURLOPT(CURLOPT_PROXYUSERNAME, CURLOPTTYPE_STRINGPOINT, 175),
1723 CURLOPT(CURLOPT_PROXYPASSWORD, CURLOPTTYPE_STRINGPOINT, 176),
1724
1725 /* Comma separated list of hostnames defining no-proxy zones. These should
1726 match both hostnames directly, and hostnames within a domain. For
1727 example, local.com will match local.com and www.local.com, but NOT
1728 notlocal.com or www.notlocal.com. For compatibility with other
1729 implementations of this, .local.com will be considered to be the same as
1730 local.com. A single * is the only valid wildcard, and effectively
1731 disables the use of proxy. */
1732 CURLOPT(CURLOPT_NOPROXY, CURLOPTTYPE_STRINGPOINT, 177),
1733
1734 /* block size for TFTP transfers */
1735 CURLOPT(CURLOPT_TFTP_BLKSIZE, CURLOPTTYPE_LONG, 178),
1736
1737 /* Socks Service */
1738 /* DEPRECATED, do not use! */
1739 CURLOPTDEPRECATED(CURLOPT_SOCKS5_GSSAPI_SERVICE,
1740 CURLOPTTYPE_STRINGPOINT, 179,
1741 7.49.0, "Use CURLOPT_PROXY_SERVICE_NAME"),
1742
1743 /* Socks Service */
1744 CURLOPT(CURLOPT_SOCKS5_GSSAPI_NEC, CURLOPTTYPE_LONG, 180),
1745
1746 /* set the bitmask for the protocols that are allowed to be used for the
1747 transfer, which thus helps the app which takes URLs from users or other
1748 external inputs and want to restrict what protocol(s) to deal
1749 with. Defaults to CURLPROTO_ALL. */
1750 CURLOPTDEPRECATED(CURLOPT_PROTOCOLS, CURLOPTTYPE_LONG, 181,
1751 7.85.0, "Use CURLOPT_PROTOCOLS_STR"),
1752
1753 /* set the bitmask for the protocols that libcurl is allowed to follow to,
1754 as a subset of the CURLOPT_PROTOCOLS ones. That means the protocol needs
1755 to be set in both bitmasks to be allowed to get redirected to. */
1756 CURLOPTDEPRECATED(CURLOPT_REDIR_PROTOCOLS, CURLOPTTYPE_LONG, 182,
1757 7.85.0, "Use CURLOPT_REDIR_PROTOCOLS_STR"),
1758
1759 /* set the SSH knownhost file name to use */
1760 CURLOPT(CURLOPT_SSH_KNOWNHOSTS, CURLOPTTYPE_STRINGPOINT, 183),
1761
1762 /* set the SSH host key callback, must point to a curl_sshkeycallback
1763 function */
1764 CURLOPT(CURLOPT_SSH_KEYFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 184),
1765
1766 /* set the SSH host key callback custom pointer */
1767 CURLOPT(CURLOPT_SSH_KEYDATA, CURLOPTTYPE_CBPOINT, 185),
1768
1769 /* set the SMTP mail originator */
1770 CURLOPT(CURLOPT_MAIL_FROM, CURLOPTTYPE_STRINGPOINT, 186),
1771
1772 /* set the list of SMTP mail receiver(s) */
1773 CURLOPT(CURLOPT_MAIL_RCPT, CURLOPTTYPE_SLISTPOINT, 187),
1774
1775 /* FTP: send PRET before PASV */
1776 CURLOPT(CURLOPT_FTP_USE_PRET, CURLOPTTYPE_LONG, 188),
1777
1778 /* RTSP request method (OPTIONS, SETUP, PLAY, etc...) */
1779 CURLOPT(CURLOPT_RTSP_REQUEST, CURLOPTTYPE_VALUES, 189),
1780
1781 /* The RTSP session identifier */
1782 CURLOPT(CURLOPT_RTSP_SESSION_ID, CURLOPTTYPE_STRINGPOINT, 190),
1783
1784 /* The RTSP stream URI */
1785 CURLOPT(CURLOPT_RTSP_STREAM_URI, CURLOPTTYPE_STRINGPOINT, 191),
1786
1787 /* The Transport: header to use in RTSP requests */
1788 CURLOPT(CURLOPT_RTSP_TRANSPORT, CURLOPTTYPE_STRINGPOINT, 192),
1789
1790 /* Manually initialize the client RTSP CSeq for this handle */
1791 CURLOPT(CURLOPT_RTSP_CLIENT_CSEQ, CURLOPTTYPE_LONG, 193),
1792
1793 /* Manually initialize the server RTSP CSeq for this handle */
1794 CURLOPT(CURLOPT_RTSP_SERVER_CSEQ, CURLOPTTYPE_LONG, 194),
1795
1796 /* The stream to pass to INTERLEAVEFUNCTION. */
1797 CURLOPT(CURLOPT_INTERLEAVEDATA, CURLOPTTYPE_CBPOINT, 195),
1798
1799 /* Let the application define a custom write method for RTP data */
1800 CURLOPT(CURLOPT_INTERLEAVEFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 196),
1801
1802 /* Turn on wildcard matching */
1803 CURLOPT(CURLOPT_WILDCARDMATCH, CURLOPTTYPE_LONG, 197),
1804
1805 /* Directory matching callback called before downloading of an
1806 individual file (chunk) started */
1807 CURLOPT(CURLOPT_CHUNK_BGN_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 198),
1808
1809 /* Directory matching callback called after the file (chunk)
1810 was downloaded, or skipped */
1811 CURLOPT(CURLOPT_CHUNK_END_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 199),
1812
1813 /* Change match (fnmatch-like) callback for wildcard matching */
1814 CURLOPT(CURLOPT_FNMATCH_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 200),
1815
1816 /* Let the application define custom chunk data pointer */
1817 CURLOPT(CURLOPT_CHUNK_DATA, CURLOPTTYPE_CBPOINT, 201),
1818
1819 /* FNMATCH_FUNCTION user pointer */
1820 CURLOPT(CURLOPT_FNMATCH_DATA, CURLOPTTYPE_CBPOINT, 202),
1821
1822 /* send linked-list of name:port:address sets */
1823 CURLOPT(CURLOPT_RESOLVE, CURLOPTTYPE_SLISTPOINT, 203),
1824
1825 /* Set a username for authenticated TLS */
1826 CURLOPT(CURLOPT_TLSAUTH_USERNAME, CURLOPTTYPE_STRINGPOINT, 204),
1827
1828 /* Set a password for authenticated TLS */
1829 CURLOPT(CURLOPT_TLSAUTH_PASSWORD, CURLOPTTYPE_STRINGPOINT, 205),
1830
1831 /* Set authentication type for authenticated TLS */
1832 CURLOPT(CURLOPT_TLSAUTH_TYPE, CURLOPTTYPE_STRINGPOINT, 206),
1833
1834 /* Set to 1 to enable the "TE:" header in HTTP requests to ask for
1835 compressed transfer-encoded responses. Set to 0 to disable the use of TE:
1836 in outgoing requests. The current default is 0, but it might change in a
1837 future libcurl release.
1838
1839 libcurl will ask for the compressed methods it knows of, and if that
1840 isn't any, it will not ask for transfer-encoding at all even if this
1841 option is set to 1.
1842
1843 */
1844 CURLOPT(CURLOPT_TRANSFER_ENCODING, CURLOPTTYPE_LONG, 207),
1845
1846 /* Callback function for closing socket (instead of close(2)). The callback
1847 should have type curl_closesocket_callback */
1848 CURLOPT(CURLOPT_CLOSESOCKETFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 208),
1849 CURLOPT(CURLOPT_CLOSESOCKETDATA, CURLOPTTYPE_CBPOINT, 209),
1850
1851 /* allow GSSAPI credential delegation */
1852 CURLOPT(CURLOPT_GSSAPI_DELEGATION, CURLOPTTYPE_VALUES, 210),
1853
1854 /* Set the name servers to use for DNS resolution.
1855 * Only supported by the c-ares DNS backend */
1856 CURLOPT(CURLOPT_DNS_SERVERS, CURLOPTTYPE_STRINGPOINT, 211),
1857
1858 /* Time-out accept operations (currently for FTP only) after this amount
1859 of milliseconds. */
1860 CURLOPT(CURLOPT_ACCEPTTIMEOUT_MS, CURLOPTTYPE_LONG, 212),
1861
1862 /* Set TCP keepalive */
1863 CURLOPT(CURLOPT_TCP_KEEPALIVE, CURLOPTTYPE_LONG, 213),
1864
1865 /* non-universal keepalive knobs (Linux, AIX, HP-UX, more) */
1866 CURLOPT(CURLOPT_TCP_KEEPIDLE, CURLOPTTYPE_LONG, 214),
1867 CURLOPT(CURLOPT_TCP_KEEPINTVL, CURLOPTTYPE_LONG, 215),
1868
1869 /* Enable/disable specific SSL features with a bitmask, see CURLSSLOPT_* */
1870 CURLOPT(CURLOPT_SSL_OPTIONS, CURLOPTTYPE_VALUES, 216),
1871
1872 /* Set the SMTP auth originator */
1873 CURLOPT(CURLOPT_MAIL_AUTH, CURLOPTTYPE_STRINGPOINT, 217),
1874
1875 /* Enable/disable SASL initial response */
1876 CURLOPT(CURLOPT_SASL_IR, CURLOPTTYPE_LONG, 218),
1877
1878 /* Function that will be called instead of the internal progress display
1879 * function. This function should be defined as the curl_xferinfo_callback
1880 * prototype defines. (Deprecates CURLOPT_PROGRESSFUNCTION) */
1881 CURLOPT(CURLOPT_XFERINFOFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 219),
1882
1883 /* The XOAUTH2 bearer token */
1884 CURLOPT(CURLOPT_XOAUTH2_BEARER, CURLOPTTYPE_STRINGPOINT, 220),
1885
1886 /* Set the interface string to use as outgoing network
1887 * interface for DNS requests.
1888 * Only supported by the c-ares DNS backend */
1889 CURLOPT(CURLOPT_DNS_INTERFACE, CURLOPTTYPE_STRINGPOINT, 221),
1890
1891 /* Set the local IPv4 address to use for outgoing DNS requests.
1892 * Only supported by the c-ares DNS backend */
1893 CURLOPT(CURLOPT_DNS_LOCAL_IP4, CURLOPTTYPE_STRINGPOINT, 222),
1894
1895 /* Set the local IPv6 address to use for outgoing DNS requests.
1896 * Only supported by the c-ares DNS backend */
1897 CURLOPT(CURLOPT_DNS_LOCAL_IP6, CURLOPTTYPE_STRINGPOINT, 223),
1898
1899 /* Set authentication options directly */
1900 CURLOPT(CURLOPT_LOGIN_OPTIONS, CURLOPTTYPE_STRINGPOINT, 224),
1901
1902 /* Enable/disable TLS NPN extension (http2 over ssl might fail without) */
1903 CURLOPTDEPRECATED(CURLOPT_SSL_ENABLE_NPN, CURLOPTTYPE_LONG, 225,
1904 7.86.0, "Has no function"),
1905
1906 /* Enable/disable TLS ALPN extension (http2 over ssl might fail without) */
1907 CURLOPT(CURLOPT_SSL_ENABLE_ALPN, CURLOPTTYPE_LONG, 226),
1908
1909 /* Time to wait for a response to an HTTP request containing an
1910 * Expect: 100-continue header before sending the data anyway. */
1911 CURLOPT(CURLOPT_EXPECT_100_TIMEOUT_MS, CURLOPTTYPE_LONG, 227),
1912
1913 /* This points to a linked list of headers used for proxy requests only,
1914 struct curl_slist kind */
1915 CURLOPT(CURLOPT_PROXYHEADER, CURLOPTTYPE_SLISTPOINT, 228),
1916
1917 /* Pass in a bitmask of "header options" */
1918 CURLOPT(CURLOPT_HEADEROPT, CURLOPTTYPE_VALUES, 229),
1919
1920 /* The public key in DER form used to validate the peer public key
1921 this option is used only if SSL_VERIFYPEER is true */
1922 CURLOPT(CURLOPT_PINNEDPUBLICKEY, CURLOPTTYPE_STRINGPOINT, 230),
1923
1924 /* Path to Unix domain socket */
1925 CURLOPT(CURLOPT_UNIX_SOCKET_PATH, CURLOPTTYPE_STRINGPOINT, 231),
1926
1927 /* Set if we should verify the certificate status. */
1928 CURLOPT(CURLOPT_SSL_VERIFYSTATUS, CURLOPTTYPE_LONG, 232),
1929
1930 /* Set if we should enable TLS false start. */
1931 CURLOPT(CURLOPT_SSL_FALSESTART, CURLOPTTYPE_LONG, 233),
1932
1933 /* Do not squash dot-dot sequences */
1934 CURLOPT(CURLOPT_PATH_AS_IS, CURLOPTTYPE_LONG, 234),
1935
1936 /* Proxy Service Name */
1937 CURLOPT(CURLOPT_PROXY_SERVICE_NAME, CURLOPTTYPE_STRINGPOINT, 235),
1938
1939 /* Service Name */
1940 CURLOPT(CURLOPT_SERVICE_NAME, CURLOPTTYPE_STRINGPOINT, 236),
1941
1942 /* Wait/don't wait for pipe/mutex to clarify */
1943 CURLOPT(CURLOPT_PIPEWAIT, CURLOPTTYPE_LONG, 237),
1944
1945 /* Set the protocol used when curl is given a URL without a protocol */
1946 CURLOPT(CURLOPT_DEFAULT_PROTOCOL, CURLOPTTYPE_STRINGPOINT, 238),
1947
1948 /* Set stream weight, 1 - 256 (default is 16) */
1949 CURLOPT(CURLOPT_STREAM_WEIGHT, CURLOPTTYPE_LONG, 239),
1950
1951 /* Set stream dependency on another CURL handle */
1952 CURLOPT(CURLOPT_STREAM_DEPENDS, CURLOPTTYPE_OBJECTPOINT, 240),
1953
1954 /* Set E-xclusive stream dependency on another CURL handle */
1955 CURLOPT(CURLOPT_STREAM_DEPENDS_E, CURLOPTTYPE_OBJECTPOINT, 241),
1956
1957 /* Do not send any tftp option requests to the server */
1958 CURLOPT(CURLOPT_TFTP_NO_OPTIONS, CURLOPTTYPE_LONG, 242),
1959
1960 /* Linked-list of host:port:connect-to-host:connect-to-port,
1961 overrides the URL's host:port (only for the network layer) */
1962 CURLOPT(CURLOPT_CONNECT_TO, CURLOPTTYPE_SLISTPOINT, 243),
1963
1964 /* Set TCP Fast Open */
1965 CURLOPT(CURLOPT_TCP_FASTOPEN, CURLOPTTYPE_LONG, 244),
1966
1967 /* Continue to send data if the server responds early with an
1968 * HTTP status code >= 300 */
1969 CURLOPT(CURLOPT_KEEP_SENDING_ON_ERROR, CURLOPTTYPE_LONG, 245),
1970
1971 /* The CApath or CAfile used to validate the proxy certificate
1972 this option is used only if PROXY_SSL_VERIFYPEER is true */
1973 CURLOPT(CURLOPT_PROXY_CAINFO, CURLOPTTYPE_STRINGPOINT, 246),
1974
1975 /* The CApath directory used to validate the proxy certificate
1976 this option is used only if PROXY_SSL_VERIFYPEER is true */
1977 CURLOPT(CURLOPT_PROXY_CAPATH, CURLOPTTYPE_STRINGPOINT, 247),
1978
1979 /* Set if we should verify the proxy in ssl handshake,
1980 set 1 to verify. */
1981 CURLOPT(CURLOPT_PROXY_SSL_VERIFYPEER, CURLOPTTYPE_LONG, 248),
1982
1983 /* Set if we should verify the Common name from the proxy certificate in ssl
1984 * handshake, set 1 to check existence, 2 to ensure that it matches
1985 * the provided hostname. */
1986 CURLOPT(CURLOPT_PROXY_SSL_VERIFYHOST, CURLOPTTYPE_LONG, 249),
1987
1988 /* What version to specifically try to use for proxy.
1989 See CURL_SSLVERSION defines below. */
1990 CURLOPT(CURLOPT_PROXY_SSLVERSION, CURLOPTTYPE_VALUES, 250),
1991
1992 /* Set a username for authenticated TLS for proxy */
1993 CURLOPT(CURLOPT_PROXY_TLSAUTH_USERNAME, CURLOPTTYPE_STRINGPOINT, 251),
1994
1995 /* Set a password for authenticated TLS for proxy */
1996 CURLOPT(CURLOPT_PROXY_TLSAUTH_PASSWORD, CURLOPTTYPE_STRINGPOINT, 252),
1997
1998 /* Set authentication type for authenticated TLS for proxy */
1999 CURLOPT(CURLOPT_PROXY_TLSAUTH_TYPE, CURLOPTTYPE_STRINGPOINT, 253),
2000
2001 /* name of the file keeping your private SSL-certificate for proxy */
2002 CURLOPT(CURLOPT_PROXY_SSLCERT, CURLOPTTYPE_STRINGPOINT, 254),
2003
2004 /* type of the file keeping your SSL-certificate ("DER", "PEM", "ENG") for
2005 proxy */
2006 CURLOPT(CURLOPT_PROXY_SSLCERTTYPE, CURLOPTTYPE_STRINGPOINT, 255),
2007
2008 /* name of the file keeping your private SSL-key for proxy */
2009 CURLOPT(CURLOPT_PROXY_SSLKEY, CURLOPTTYPE_STRINGPOINT, 256),
2010
2011 /* type of the file keeping your private SSL-key ("DER", "PEM", "ENG") for
2012 proxy */
2013 CURLOPT(CURLOPT_PROXY_SSLKEYTYPE, CURLOPTTYPE_STRINGPOINT, 257),
2014
2015 /* password for the SSL private key for proxy */
2016 CURLOPT(CURLOPT_PROXY_KEYPASSWD, CURLOPTTYPE_STRINGPOINT, 258),
2017
2018 /* Specify which SSL ciphers to use for proxy */
2019 CURLOPT(CURLOPT_PROXY_SSL_CIPHER_LIST, CURLOPTTYPE_STRINGPOINT, 259),
2020
2021 /* CRL file for proxy */
2022 CURLOPT(CURLOPT_PROXY_CRLFILE, CURLOPTTYPE_STRINGPOINT, 260),
2023
2024 /* Enable/disable specific SSL features with a bitmask for proxy, see
2025 CURLSSLOPT_* */
2026 CURLOPT(CURLOPT_PROXY_SSL_OPTIONS, CURLOPTTYPE_LONG, 261),
2027
2028 /* Name of pre proxy to use. */
2029 CURLOPT(CURLOPT_PRE_PROXY, CURLOPTTYPE_STRINGPOINT, 262),
2030
2031 /* The public key in DER form used to validate the proxy public key
2032 this option is used only if PROXY_SSL_VERIFYPEER is true */
2033 CURLOPT(CURLOPT_PROXY_PINNEDPUBLICKEY, CURLOPTTYPE_STRINGPOINT, 263),
2034
2035 /* Path to an abstract Unix domain socket */
2036 CURLOPT(CURLOPT_ABSTRACT_UNIX_SOCKET, CURLOPTTYPE_STRINGPOINT, 264),
2037
2038 /* Suppress proxy CONNECT response headers from user callbacks */
2039 CURLOPT(CURLOPT_SUPPRESS_CONNECT_HEADERS, CURLOPTTYPE_LONG, 265),
2040
2041 /* The request target, instead of extracted from the URL */
2042 CURLOPT(CURLOPT_REQUEST_TARGET, CURLOPTTYPE_STRINGPOINT, 266),
2043
2044 /* bitmask of allowed auth methods for connections to SOCKS5 proxies */
2045 CURLOPT(CURLOPT_SOCKS5_AUTH, CURLOPTTYPE_LONG, 267),
2046
2047 /* Enable/disable SSH compression */
2048 CURLOPT(CURLOPT_SSH_COMPRESSION, CURLOPTTYPE_LONG, 268),
2049
2050 /* Post MIME data. */
2051 CURLOPT(CURLOPT_MIMEPOST, CURLOPTTYPE_OBJECTPOINT, 269),
2052
2053 /* Time to use with the CURLOPT_TIMECONDITION. Specified in number of
2054 seconds since 1 Jan 1970. */
2055 CURLOPT(CURLOPT_TIMEVALUE_LARGE, CURLOPTTYPE_OFF_T, 270),
2056
2057 /* Head start in milliseconds to give happy eyeballs. */
2058 CURLOPT(CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS, CURLOPTTYPE_LONG, 271),
2059
2060 /* Function that will be called before a resolver request is made */
2061 CURLOPT(CURLOPT_RESOLVER_START_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 272),
2062
2063 /* User data to pass to the resolver start callback. */
2064 CURLOPT(CURLOPT_RESOLVER_START_DATA, CURLOPTTYPE_CBPOINT, 273),
2065
2066 /* send HAProxy PROXY protocol header? */
2067 CURLOPT(CURLOPT_HAPROXYPROTOCOL, CURLOPTTYPE_LONG, 274),
2068
2069 /* shuffle addresses before use when DNS returns multiple */
2070 CURLOPT(CURLOPT_DNS_SHUFFLE_ADDRESSES, CURLOPTTYPE_LONG, 275),
2071
2072 /* Specify which TLS 1.3 ciphers suites to use */
2073 CURLOPT(CURLOPT_TLS13_CIPHERS, CURLOPTTYPE_STRINGPOINT, 276),
2074 CURLOPT(CURLOPT_PROXY_TLS13_CIPHERS, CURLOPTTYPE_STRINGPOINT, 277),
2075
2076 /* Disallow specifying username/login in URL. */
2077 CURLOPT(CURLOPT_DISALLOW_USERNAME_IN_URL, CURLOPTTYPE_LONG, 278),
2078
2079 /* DNS-over-HTTPS URL */
2080 CURLOPT(CURLOPT_DOH_URL, CURLOPTTYPE_STRINGPOINT, 279),
2081
2082 /* Preferred buffer size to use for uploads */
2083 CURLOPT(CURLOPT_UPLOAD_BUFFERSIZE, CURLOPTTYPE_LONG, 280),
2084
2085 /* Time in ms between connection upkeep calls for long-lived connections. */
2086 CURLOPT(CURLOPT_UPKEEP_INTERVAL_MS, CURLOPTTYPE_LONG, 281),
2087
2088 /* Specify URL using CURL URL API. */
2089 CURLOPT(CURLOPT_CURLU, CURLOPTTYPE_OBJECTPOINT, 282),
2090
2091 /* add trailing data just after no more data is available */
2092 CURLOPT(CURLOPT_TRAILERFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 283),
2093
2094 /* pointer to be passed to HTTP_TRAILER_FUNCTION */
2095 CURLOPT(CURLOPT_TRAILERDATA, CURLOPTTYPE_CBPOINT, 284),
2096
2097 /* set this to 1L to allow HTTP/0.9 responses or 0L to disallow */
2098 CURLOPT(CURLOPT_HTTP09_ALLOWED, CURLOPTTYPE_LONG, 285),
2099
2100 /* alt-svc control bitmask */
2101 CURLOPT(CURLOPT_ALTSVC_CTRL, CURLOPTTYPE_LONG, 286),
2102
2103 /* alt-svc cache file name to possibly read from/write to */
2104 CURLOPT(CURLOPT_ALTSVC, CURLOPTTYPE_STRINGPOINT, 287),
2105
2106 /* maximum age (idle time) of a connection to consider it for reuse
2107 * (in seconds) */
2108 CURLOPT(CURLOPT_MAXAGE_CONN, CURLOPTTYPE_LONG, 288),
2109
2110 /* SASL authorization identity */
2111 CURLOPT(CURLOPT_SASL_AUTHZID, CURLOPTTYPE_STRINGPOINT, 289),
2112
2113 /* allow RCPT TO command to fail for some recipients */
2114 CURLOPT(CURLOPT_MAIL_RCPT_ALLOWFAILS, CURLOPTTYPE_LONG, 290),
2115
2116 /* the private SSL-certificate as a "blob" */
2117 CURLOPT(CURLOPT_SSLCERT_BLOB, CURLOPTTYPE_BLOB, 291),
2118 CURLOPT(CURLOPT_SSLKEY_BLOB, CURLOPTTYPE_BLOB, 292),
2119 CURLOPT(CURLOPT_PROXY_SSLCERT_BLOB, CURLOPTTYPE_BLOB, 293),
2120 CURLOPT(CURLOPT_PROXY_SSLKEY_BLOB, CURLOPTTYPE_BLOB, 294),
2121 CURLOPT(CURLOPT_ISSUERCERT_BLOB, CURLOPTTYPE_BLOB, 295),
2122
2123 /* Issuer certificate for proxy */
2124 CURLOPT(CURLOPT_PROXY_ISSUERCERT, CURLOPTTYPE_STRINGPOINT, 296),
2125 CURLOPT(CURLOPT_PROXY_ISSUERCERT_BLOB, CURLOPTTYPE_BLOB, 297),
2126
2127 /* the EC curves requested by the TLS client (RFC 8422, 5.1);
2128 * OpenSSL support via 'set_groups'/'set_curves':
2129 * https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set1_groups.html
2130 */
2131 CURLOPT(CURLOPT_SSL_EC_CURVES, CURLOPTTYPE_STRINGPOINT, 298),
2132
2133 /* HSTS bitmask */
2134 CURLOPT(CURLOPT_HSTS_CTRL, CURLOPTTYPE_LONG, 299),
2135 /* HSTS file name */
2136 CURLOPT(CURLOPT_HSTS, CURLOPTTYPE_STRINGPOINT, 300),
2137
2138 /* HSTS read callback */
2139 CURLOPT(CURLOPT_HSTSREADFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 301),
2140 CURLOPT(CURLOPT_HSTSREADDATA, CURLOPTTYPE_CBPOINT, 302),
2141
2142 /* HSTS write callback */
2143 CURLOPT(CURLOPT_HSTSWRITEFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 303),
2144 CURLOPT(CURLOPT_HSTSWRITEDATA, CURLOPTTYPE_CBPOINT, 304),
2145
2146 /* Parameters for V4 signature */
2147 CURLOPT(CURLOPT_AWS_SIGV4, CURLOPTTYPE_STRINGPOINT, 305),
2148
2149 /* Same as CURLOPT_SSL_VERIFYPEER but for DoH (DNS-over-HTTPS) servers. */
2150 CURLOPT(CURLOPT_DOH_SSL_VERIFYPEER, CURLOPTTYPE_LONG, 306),
2151
2152 /* Same as CURLOPT_SSL_VERIFYHOST but for DoH (DNS-over-HTTPS) servers. */
2153 CURLOPT(CURLOPT_DOH_SSL_VERIFYHOST, CURLOPTTYPE_LONG, 307),
2154
2155 /* Same as CURLOPT_SSL_VERIFYSTATUS but for DoH (DNS-over-HTTPS) servers. */
2156 CURLOPT(CURLOPT_DOH_SSL_VERIFYSTATUS, CURLOPTTYPE_LONG, 308),
2157
2158 /* The CA certificates as "blob" used to validate the peer certificate
2159 this option is used only if SSL_VERIFYPEER is true */
2160 CURLOPT(CURLOPT_CAINFO_BLOB, CURLOPTTYPE_BLOB, 309),
2161
2162 /* The CA certificates as "blob" used to validate the proxy certificate
2163 this option is used only if PROXY_SSL_VERIFYPEER is true */
2164 CURLOPT(CURLOPT_PROXY_CAINFO_BLOB, CURLOPTTYPE_BLOB, 310),
2165
2166 /* used by scp/sftp to verify the host's public key */
2167 CURLOPT(CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256, CURLOPTTYPE_STRINGPOINT, 311),
2168
2169 /* Function that will be called immediately before the initial request
2170 is made on a connection (after any protocol negotiation step). */
2171 CURLOPT(CURLOPT_PREREQFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 312),
2172
2173 /* Data passed to the CURLOPT_PREREQFUNCTION callback */
2174 CURLOPT(CURLOPT_PREREQDATA, CURLOPTTYPE_CBPOINT, 313),
2175
2176 /* maximum age (since creation) of a connection to consider it for reuse
2177 * (in seconds) */
2178 CURLOPT(CURLOPT_MAXLIFETIME_CONN, CURLOPTTYPE_LONG, 314),
2179
2180 /* Set MIME option flags. */
2181 CURLOPT(CURLOPT_MIME_OPTIONS, CURLOPTTYPE_LONG, 315),
2182
2183 /* set the SSH host key callback, must point to a curl_sshkeycallback
2184 function */
2185 CURLOPT(CURLOPT_SSH_HOSTKEYFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 316),
2186
2187 /* set the SSH host key callback custom pointer */
2188 CURLOPT(CURLOPT_SSH_HOSTKEYDATA, CURLOPTTYPE_CBPOINT, 317),
2189
2190 /* specify which protocols that are allowed to be used for the transfer,
2191 which thus helps the app which takes URLs from users or other external
2192 inputs and want to restrict what protocol(s) to deal with. Defaults to
2193 all built-in protocols. */
2194 CURLOPT(CURLOPT_PROTOCOLS_STR, CURLOPTTYPE_STRINGPOINT, 318),
2195
2196 /* specify which protocols that libcurl is allowed to follow directs to */
2197 CURLOPT(CURLOPT_REDIR_PROTOCOLS_STR, CURLOPTTYPE_STRINGPOINT, 319),
2198
2199 /* websockets options */
2200 CURLOPT(CURLOPT_WS_OPTIONS, CURLOPTTYPE_LONG, 320),
2201
2202 /* CA cache timeout */
2203 CURLOPT(CURLOPT_CA_CACHE_TIMEOUT, CURLOPTTYPE_LONG, 321),
2204
2205 /* Can leak things, gonna exit() soon */
2206 CURLOPT(CURLOPT_QUICK_EXIT, CURLOPTTYPE_LONG, 322),
2207
2208 /* set a specific client IP for HAProxy PROXY protocol header? */
2209 CURLOPT(CURLOPT_HAPROXY_CLIENT_IP, CURLOPTTYPE_STRINGPOINT, 323),
2210
2211 /* millisecond version */
2212 CURLOPT(CURLOPT_SERVER_RESPONSE_TIMEOUT_MS, CURLOPTTYPE_LONG, 324),
2213
2214 CURLOPT_LASTENTRY /* the last unused */
2215} CURLoption;
2216
2217#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
2218 the obsolete stuff removed! */
2219
2220/* Backwards compatibility with older names */
2221/* These are scheduled to disappear by 2011 */
2222
2223/* This was added in version 7.19.1 */
2224#define CURLOPT_POST301 CURLOPT_POSTREDIR
2225
2226/* These are scheduled to disappear by 2009 */
2227
2228/* The following were added in 7.17.0 */
2229#define CURLOPT_SSLKEYPASSWD CURLOPT_KEYPASSWD
2230#define CURLOPT_FTPAPPEND CURLOPT_APPEND
2231#define CURLOPT_FTPLISTONLY CURLOPT_DIRLISTONLY
2232#define CURLOPT_FTP_SSL CURLOPT_USE_SSL
2233
2234/* The following were added earlier */
2235
2236#define CURLOPT_SSLCERTPASSWD CURLOPT_KEYPASSWD
2237#define CURLOPT_KRB4LEVEL CURLOPT_KRBLEVEL
2238
2239/* */
2240#define CURLOPT_FTP_RESPONSE_TIMEOUT CURLOPT_SERVER_RESPONSE_TIMEOUT
2241
2242/* Added in 8.2.0 */
2243#define CURLOPT_MAIL_RCPT_ALLLOWFAILS CURLOPT_MAIL_RCPT_ALLOWFAILS
2244
2245#else
2246/* This is set if CURL_NO_OLDIES is defined at compile-time */
2247#undef CURLOPT_DNS_USE_GLOBAL_CACHE /* soon obsolete */
2248#endif
2249
2250
2251 /* Below here follows defines for the CURLOPT_IPRESOLVE option. If a host
2252 name resolves addresses using more than one IP protocol version, this
2253 option might be handy to force libcurl to use a specific IP version. */
2254#define CURL_IPRESOLVE_WHATEVER 0 /* default, uses addresses to all IP
2255 versions that your system allows */
2256#define CURL_IPRESOLVE_V4 1 /* uses only IPv4 addresses/connections */
2257#define CURL_IPRESOLVE_V6 2 /* uses only IPv6 addresses/connections */
2258
2259 /* Convenient "aliases" */
2260#define CURLOPT_RTSPHEADER CURLOPT_HTTPHEADER
2261
2262 /* These enums are for use with the CURLOPT_HTTP_VERSION option. */
2263enum {
2264 CURL_HTTP_VERSION_NONE, /* setting this means we don't care, and that we'd
2265 like the library to choose the best possible
2266 for us! */
2267 CURL_HTTP_VERSION_1_0, /* please use HTTP 1.0 in the request */
2268 CURL_HTTP_VERSION_1_1, /* please use HTTP 1.1 in the request */
2269 CURL_HTTP_VERSION_2_0, /* please use HTTP 2 in the request */
2270 CURL_HTTP_VERSION_2TLS, /* use version 2 for HTTPS, version 1.1 for HTTP */
2271 CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE, /* please use HTTP 2 without HTTP/1.1
2272 Upgrade */
2273 CURL_HTTP_VERSION_3 = 30, /* Use HTTP/3, fallback to HTTP/2 or HTTP/1 if
2274 needed. For HTTPS only. For HTTP, this option
2275 makes libcurl return error. */
2276 CURL_HTTP_VERSION_3ONLY = 31, /* Use HTTP/3 without fallback. For HTTPS
2277 only. For HTTP, this makes libcurl
2278 return error. */
2279
2280 CURL_HTTP_VERSION_LAST /* *ILLEGAL* http version */
2281};
2282
2283/* Convenience definition simple because the name of the version is HTTP/2 and
2284 not 2.0. The 2_0 version of the enum name was set while the version was
2285 still planned to be 2.0 and we stick to it for compatibility. */
2286#define CURL_HTTP_VERSION_2 CURL_HTTP_VERSION_2_0
2287
2288/*
2289 * Public API enums for RTSP requests
2290 */
2291enum {
2292 CURL_RTSPREQ_NONE, /* first in list */
2293 CURL_RTSPREQ_OPTIONS,
2294 CURL_RTSPREQ_DESCRIBE,
2295 CURL_RTSPREQ_ANNOUNCE,
2296 CURL_RTSPREQ_SETUP,
2297 CURL_RTSPREQ_PLAY,
2298 CURL_RTSPREQ_PAUSE,
2299 CURL_RTSPREQ_TEARDOWN,
2300 CURL_RTSPREQ_GET_PARAMETER,
2301 CURL_RTSPREQ_SET_PARAMETER,
2302 CURL_RTSPREQ_RECORD,
2303 CURL_RTSPREQ_RECEIVE,
2304 CURL_RTSPREQ_LAST /* last in list */
2305};
2306
2307 /* These enums are for use with the CURLOPT_NETRC option. */
2308enum CURL_NETRC_OPTION {
2309 CURL_NETRC_IGNORED, /* The .netrc will never be read.
2310 * This is the default. */
2311 CURL_NETRC_OPTIONAL, /* A user:password in the URL will be preferred
2312 * to one in the .netrc. */
2313 CURL_NETRC_REQUIRED, /* A user:password in the URL will be ignored.
2314 * Unless one is set programmatically, the .netrc
2315 * will be queried. */
2316 CURL_NETRC_LAST
2317};
2318
2319enum {
2320 CURL_SSLVERSION_DEFAULT,
2321 CURL_SSLVERSION_TLSv1, /* TLS 1.x */
2322 CURL_SSLVERSION_SSLv2,
2323 CURL_SSLVERSION_SSLv3,
2324 CURL_SSLVERSION_TLSv1_0,
2325 CURL_SSLVERSION_TLSv1_1,
2326 CURL_SSLVERSION_TLSv1_2,
2327 CURL_SSLVERSION_TLSv1_3,
2328
2329 CURL_SSLVERSION_LAST /* never use, keep last */
2330};
2331
2332enum {
2333 CURL_SSLVERSION_MAX_NONE = 0,
2334 CURL_SSLVERSION_MAX_DEFAULT = (CURL_SSLVERSION_TLSv1 << 16),
2335 CURL_SSLVERSION_MAX_TLSv1_0 = (CURL_SSLVERSION_TLSv1_0 << 16),
2336 CURL_SSLVERSION_MAX_TLSv1_1 = (CURL_SSLVERSION_TLSv1_1 << 16),
2337 CURL_SSLVERSION_MAX_TLSv1_2 = (CURL_SSLVERSION_TLSv1_2 << 16),
2338 CURL_SSLVERSION_MAX_TLSv1_3 = (CURL_SSLVERSION_TLSv1_3 << 16),
2339
2340 /* never use, keep last */
2341 CURL_SSLVERSION_MAX_LAST = (CURL_SSLVERSION_LAST << 16)
2342};
2343
2344enum CURL_TLSAUTH {
2345 CURL_TLSAUTH_NONE,
2346 CURL_TLSAUTH_SRP,
2347 CURL_TLSAUTH_LAST /* never use, keep last */
2348};
2349
2350/* symbols to use with CURLOPT_POSTREDIR.
2351 CURL_REDIR_POST_301, CURL_REDIR_POST_302 and CURL_REDIR_POST_303
2352 can be bitwise ORed so that CURL_REDIR_POST_301 | CURL_REDIR_POST_302
2353 | CURL_REDIR_POST_303 == CURL_REDIR_POST_ALL */
2354
2355#define CURL_REDIR_GET_ALL 0
2356#define CURL_REDIR_POST_301 1
2357#define CURL_REDIR_POST_302 2
2358#define CURL_REDIR_POST_303 4
2359#define CURL_REDIR_POST_ALL \
2360 (CURL_REDIR_POST_301|CURL_REDIR_POST_302|CURL_REDIR_POST_303)
2361
2362typedef enum {
2363 CURL_TIMECOND_NONE,
2364
2365 CURL_TIMECOND_IFMODSINCE,
2366 CURL_TIMECOND_IFUNMODSINCE,
2367 CURL_TIMECOND_LASTMOD,
2368
2369 CURL_TIMECOND_LAST
2370} curl_TimeCond;
2371
2372/* Special size_t value signaling a null-terminated string. */
2373#define CURL_ZERO_TERMINATED ((size_t) -1)
2374
2375/* curl_strequal() and curl_strnequal() are subject for removal in a future
2376 release */
2377CURL_EXTERN int curl_strequal(const char *s1, const char *s2);
2378CURL_EXTERN int curl_strnequal(const char *s1, const char *s2, size_t n);
2379
2380/* Mime/form handling support. */
2381typedef struct curl_mime curl_mime; /* Mime context. */
2382typedef struct curl_mimepart curl_mimepart; /* Mime part context. */
2383
2384/* CURLMIMEOPT_ defines are for the CURLOPT_MIME_OPTIONS option. */
2385#define CURLMIMEOPT_FORMESCAPE (1<<0) /* Use backslash-escaping for forms. */
2386
2387/*
2388 * NAME curl_mime_init()
2389 *
2390 * DESCRIPTION
2391 *
2392 * Create a mime context and return its handle. The easy parameter is the
2393 * target handle.
2394 */
2395CURL_EXTERN curl_mime *curl_mime_init(CURL *easy);
2396
2397/*
2398 * NAME curl_mime_free()
2399 *
2400 * DESCRIPTION
2401 *
2402 * release a mime handle and its substructures.
2403 */
2404CURL_EXTERN void curl_mime_free(curl_mime *mime);
2405
2406/*
2407 * NAME curl_mime_addpart()
2408 *
2409 * DESCRIPTION
2410 *
2411 * Append a new empty part to the given mime context and return a handle to
2412 * the created part.
2413 */
2414CURL_EXTERN curl_mimepart *curl_mime_addpart(curl_mime *mime);
2415
2416/*
2417 * NAME curl_mime_name()
2418 *
2419 * DESCRIPTION
2420 *
2421 * Set mime/form part name.
2422 */
2423CURL_EXTERN CURLcode curl_mime_name(curl_mimepart *part, const char *name);
2424
2425/*
2426 * NAME curl_mime_filename()
2427 *
2428 * DESCRIPTION
2429 *
2430 * Set mime part remote file name.
2431 */
2432CURL_EXTERN CURLcode curl_mime_filename(curl_mimepart *part,
2433 const char *filename);
2434
2435/*
2436 * NAME curl_mime_type()
2437 *
2438 * DESCRIPTION
2439 *
2440 * Set mime part type.
2441 */
2442CURL_EXTERN CURLcode curl_mime_type(curl_mimepart *part, const char *mimetype);
2443
2444/*
2445 * NAME curl_mime_encoder()
2446 *
2447 * DESCRIPTION
2448 *
2449 * Set mime data transfer encoder.
2450 */
2451CURL_EXTERN CURLcode curl_mime_encoder(curl_mimepart *part,
2452 const char *encoding);
2453
2454/*
2455 * NAME curl_mime_data()
2456 *
2457 * DESCRIPTION
2458 *
2459 * Set mime part data source from memory data,
2460 */
2461CURL_EXTERN CURLcode curl_mime_data(curl_mimepart *part,
2462 const char *data, size_t datasize);
2463
2464/*
2465 * NAME curl_mime_filedata()
2466 *
2467 * DESCRIPTION
2468 *
2469 * Set mime part data source from named file.
2470 */
2471CURL_EXTERN CURLcode curl_mime_filedata(curl_mimepart *part,
2472 const char *filename);
2473
2474/*
2475 * NAME curl_mime_data_cb()
2476 *
2477 * DESCRIPTION
2478 *
2479 * Set mime part data source from callback function.
2480 */
2481CURL_EXTERN CURLcode curl_mime_data_cb(curl_mimepart *part,
2482 curl_off_t datasize,
2483 curl_read_callback readfunc,
2484 curl_seek_callback seekfunc,
2485 curl_free_callback freefunc,
2486 void *arg);
2487
2488/*
2489 * NAME curl_mime_subparts()
2490 *
2491 * DESCRIPTION
2492 *
2493 * Set mime part data source from subparts.
2494 */
2495CURL_EXTERN CURLcode curl_mime_subparts(curl_mimepart *part,
2496 curl_mime *subparts);
2497/*
2498 * NAME curl_mime_headers()
2499 *
2500 * DESCRIPTION
2501 *
2502 * Set mime part headers.
2503 */
2504CURL_EXTERN CURLcode curl_mime_headers(curl_mimepart *part,
2505 struct curl_slist *headers,
2506 int take_ownership);
2507
2508typedef enum {
2509 /********* the first one is unused ************/
2510 CURLFORM_NOTHING CURL_DEPRECATED(7.56.0, ""),
2511 CURLFORM_COPYNAME CURL_DEPRECATED(7.56.0, "Use curl_mime_name()"),
2512 CURLFORM_PTRNAME CURL_DEPRECATED(7.56.0, "Use curl_mime_name()"),
2513 CURLFORM_NAMELENGTH CURL_DEPRECATED(7.56.0, ""),
2514 CURLFORM_COPYCONTENTS CURL_DEPRECATED(7.56.0, "Use curl_mime_data()"),
2515 CURLFORM_PTRCONTENTS CURL_DEPRECATED(7.56.0, "Use curl_mime_data()"),
2516 CURLFORM_CONTENTSLENGTH CURL_DEPRECATED(7.56.0, "Use curl_mime_data()"),
2517 CURLFORM_FILECONTENT CURL_DEPRECATED(7.56.0, "Use curl_mime_data_cb()"),
2518 CURLFORM_ARRAY CURL_DEPRECATED(7.56.0, ""),
2519 CURLFORM_OBSOLETE,
2520 CURLFORM_FILE CURL_DEPRECATED(7.56.0, "Use curl_mime_filedata()"),
2521
2522 CURLFORM_BUFFER CURL_DEPRECATED(7.56.0, "Use curl_mime_filename()"),
2523 CURLFORM_BUFFERPTR CURL_DEPRECATED(7.56.0, "Use curl_mime_data()"),
2524 CURLFORM_BUFFERLENGTH CURL_DEPRECATED(7.56.0, "Use curl_mime_data()"),
2525
2526 CURLFORM_CONTENTTYPE CURL_DEPRECATED(7.56.0, "Use curl_mime_type()"),
2527 CURLFORM_CONTENTHEADER CURL_DEPRECATED(7.56.0, "Use curl_mime_headers()"),
2528 CURLFORM_FILENAME CURL_DEPRECATED(7.56.0, "Use curl_mime_filename()"),
2529 CURLFORM_END,
2530 CURLFORM_OBSOLETE2,
2531
2532 CURLFORM_STREAM CURL_DEPRECATED(7.56.0, "Use curl_mime_data_cb()"),
2533 CURLFORM_CONTENTLEN /* added in 7.46.0, provide a curl_off_t length */
2534 CURL_DEPRECATED(7.56.0, "Use curl_mime_data()"),
2535
2536 CURLFORM_LASTENTRY /* the last unused */
2537} CURLformoption;
2538
2539/* structure to be used as parameter for CURLFORM_ARRAY */
2540struct curl_forms {
2541 CURLformoption option;
2542 const char *value;
2543};
2544
2545/* use this for multipart formpost building */
2546/* Returns code for curl_formadd()
2547 *
2548 * Returns:
2549 * CURL_FORMADD_OK on success
2550 * CURL_FORMADD_MEMORY if the FormInfo allocation fails
2551 * CURL_FORMADD_OPTION_TWICE if one option is given twice for one Form
2552 * CURL_FORMADD_NULL if a null pointer was given for a char
2553 * CURL_FORMADD_MEMORY if the allocation of a FormInfo struct failed
2554 * CURL_FORMADD_UNKNOWN_OPTION if an unknown option was used
2555 * CURL_FORMADD_INCOMPLETE if the some FormInfo is not complete (or error)
2556 * CURL_FORMADD_MEMORY if a curl_httppost struct cannot be allocated
2557 * CURL_FORMADD_MEMORY if some allocation for string copying failed.
2558 * CURL_FORMADD_ILLEGAL_ARRAY if an illegal option is used in an array
2559 *
2560 ***************************************************************************/
2561typedef enum {
2562 CURL_FORMADD_OK CURL_DEPRECATED(7.56.0, ""), /* 1st, no error */
2563
2564 CURL_FORMADD_MEMORY CURL_DEPRECATED(7.56.0, ""),
2565 CURL_FORMADD_OPTION_TWICE CURL_DEPRECATED(7.56.0, ""),
2566 CURL_FORMADD_NULL CURL_DEPRECATED(7.56.0, ""),
2567 CURL_FORMADD_UNKNOWN_OPTION CURL_DEPRECATED(7.56.0, ""),
2568 CURL_FORMADD_INCOMPLETE CURL_DEPRECATED(7.56.0, ""),
2569 CURL_FORMADD_ILLEGAL_ARRAY CURL_DEPRECATED(7.56.0, ""),
2570 /* libcurl was built with form api disabled */
2571 CURL_FORMADD_DISABLED CURL_DEPRECATED(7.56.0, ""),
2572
2573 CURL_FORMADD_LAST /* last */
2574} CURLFORMcode;
2575
2576/*
2577 * NAME curl_formadd()
2578 *
2579 * DESCRIPTION
2580 *
2581 * Pretty advanced function for building multi-part formposts. Each invoke
2582 * adds one part that together construct a full post. Then use
2583 * CURLOPT_HTTPPOST to send it off to libcurl.
2584 */
2585CURL_EXTERN CURLFORMcode CURL_DEPRECATED(7.56.0, "Use curl_mime_init()")
2586curl_formadd(struct curl_httppost **httppost,
2587 struct curl_httppost **last_post,
2588 ...);
2589
2590/*
2591 * callback function for curl_formget()
2592 * The void *arg pointer will be the one passed as second argument to
2593 * curl_formget().
2594 * The character buffer passed to it must not be freed.
2595 * Should return the buffer length passed to it as the argument "len" on
2596 * success.
2597 */
2598typedef size_t (*curl_formget_callback)(void *arg, const char *buf,
2599 size_t len);
2600
2601/*
2602 * NAME curl_formget()
2603 *
2604 * DESCRIPTION
2605 *
2606 * Serialize a curl_httppost struct built with curl_formadd().
2607 * Accepts a void pointer as second argument which will be passed to
2608 * the curl_formget_callback function.
2609 * Returns 0 on success.
2610 */
2611CURL_EXTERN int CURL_DEPRECATED(7.56.0, "")
2612curl_formget(struct curl_httppost *form, void *arg,
2613 curl_formget_callback append);
2614/*
2615 * NAME curl_formfree()
2616 *
2617 * DESCRIPTION
2618 *
2619 * Free a multipart formpost previously built with curl_formadd().
2620 */
2621CURL_EXTERN void CURL_DEPRECATED(7.56.0, "Use curl_mime_free()")
2622curl_formfree(struct curl_httppost *form);
2623
2624/*
2625 * NAME curl_getenv()
2626 *
2627 * DESCRIPTION
2628 *
2629 * Returns a malloc()'ed string that MUST be curl_free()ed after usage is
2630 * complete. DEPRECATED - see lib/README.curlx
2631 */
2632CURL_EXTERN char *curl_getenv(const char *variable);
2633
2634/*
2635 * NAME curl_version()
2636 *
2637 * DESCRIPTION
2638 *
2639 * Returns a static ascii string of the libcurl version.
2640 */
2641CURL_EXTERN char *curl_version(void);
2642
2643/*
2644 * NAME curl_easy_escape()
2645 *
2646 * DESCRIPTION
2647 *
2648 * Escapes URL strings (converts all letters consider illegal in URLs to their
2649 * %XX versions). This function returns a new allocated string or NULL if an
2650 * error occurred.
2651 */
2652CURL_EXTERN char *curl_easy_escape(CURL *handle,
2653 const char *string,
2654 int length);
2655
2656/* the previous version: */
2657CURL_EXTERN char *curl_escape(const char *string,
2658 int length);
2659
2660
2661/*
2662 * NAME curl_easy_unescape()
2663 *
2664 * DESCRIPTION
2665 *
2666 * Unescapes URL encoding in strings (converts all %XX codes to their 8bit
2667 * versions). This function returns a new allocated string or NULL if an error
2668 * occurred.
2669 * Conversion Note: On non-ASCII platforms the ASCII %XX codes are
2670 * converted into the host encoding.
2671 */
2672CURL_EXTERN char *curl_easy_unescape(CURL *handle,
2673 const char *string,
2674 int length,
2675 int *outlength);
2676
2677/* the previous version */
2678CURL_EXTERN char *curl_unescape(const char *string,
2679 int length);
2680
2681/*
2682 * NAME curl_free()
2683 *
2684 * DESCRIPTION
2685 *
2686 * Provided for de-allocation in the same translation unit that did the
2687 * allocation. Added in libcurl 7.10
2688 */
2689CURL_EXTERN void curl_free(void *p);
2690
2691/*
2692 * NAME curl_global_init()
2693 *
2694 * DESCRIPTION
2695 *
2696 * curl_global_init() should be invoked exactly once for each application that
2697 * uses libcurl and before any call of other libcurl functions.
2698
2699 * This function is thread-safe if CURL_VERSION_THREADSAFE is set in the
2700 * curl_version_info_data.features flag (fetch by curl_version_info()).
2701
2702 */
2703CURL_EXTERN CURLcode curl_global_init(long flags);
2704
2705/*
2706 * NAME curl_global_init_mem()
2707 *
2708 * DESCRIPTION
2709 *
2710 * curl_global_init() or curl_global_init_mem() should be invoked exactly once
2711 * for each application that uses libcurl. This function can be used to
2712 * initialize libcurl and set user defined memory management callback
2713 * functions. Users can implement memory management routines to check for
2714 * memory leaks, check for mis-use of the curl library etc. User registered
2715 * callback routines will be invoked by this library instead of the system
2716 * memory management routines like malloc, free etc.
2717 */
2718CURL_EXTERN CURLcode curl_global_init_mem(long flags,
2719 curl_malloc_callback m,
2720 curl_free_callback f,
2721 curl_realloc_callback r,
2722 curl_strdup_callback s,
2723 curl_calloc_callback c);
2724
2725/*
2726 * NAME curl_global_cleanup()
2727 *
2728 * DESCRIPTION
2729 *
2730 * curl_global_cleanup() should be invoked exactly once for each application
2731 * that uses libcurl
2732 */
2733CURL_EXTERN void curl_global_cleanup(void);
2734
2735/*
2736 * NAME curl_global_trace()
2737 *
2738 * DESCRIPTION
2739 *
2740 * curl_global_trace() can be invoked at application start to
2741 * configure which components in curl should participate in tracing.
2742
2743 * This function is thread-safe if CURL_VERSION_THREADSAFE is set in the
2744 * curl_version_info_data.features flag (fetch by curl_version_info()).
2745
2746 */
2747CURL_EXTERN CURLcode curl_global_trace(const char *config);
2748
2749/* linked-list structure for the CURLOPT_QUOTE option (and other) */
2750struct curl_slist {
2751 char *data;
2752 struct curl_slist *next;
2753};
2754
2755/*
2756 * NAME curl_global_sslset()
2757 *
2758 * DESCRIPTION
2759 *
2760 * When built with multiple SSL backends, curl_global_sslset() allows to
2761 * choose one. This function can only be called once, and it must be called
2762 * *before* curl_global_init().
2763 *
2764 * The backend can be identified by the id (e.g. CURLSSLBACKEND_OPENSSL). The
2765 * backend can also be specified via the name parameter (passing -1 as id).
2766 * If both id and name are specified, the name will be ignored. If neither id
2767 * nor name are specified, the function will fail with
2768 * CURLSSLSET_UNKNOWN_BACKEND and set the "avail" pointer to the
2769 * NULL-terminated list of available backends.
2770 *
2771 * Upon success, the function returns CURLSSLSET_OK.
2772 *
2773 * If the specified SSL backend is not available, the function returns
2774 * CURLSSLSET_UNKNOWN_BACKEND and sets the "avail" pointer to a NULL-terminated
2775 * list of available SSL backends.
2776 *
2777 * The SSL backend can be set only once. If it has already been set, a
2778 * subsequent attempt to change it will result in a CURLSSLSET_TOO_LATE.
2779 */
2780
2781struct curl_ssl_backend {
2782 curl_sslbackend id;
2783 const char *name;
2784};
2785typedef struct curl_ssl_backend curl_ssl_backend;
2786
2787typedef enum {
2788 CURLSSLSET_OK = 0,
2789 CURLSSLSET_UNKNOWN_BACKEND,
2790 CURLSSLSET_TOO_LATE,
2791 CURLSSLSET_NO_BACKENDS /* libcurl was built without any SSL support */
2792} CURLsslset;
2793
2794CURL_EXTERN CURLsslset curl_global_sslset(curl_sslbackend id, const char *name,
2795 const curl_ssl_backend ***avail);
2796
2797/*
2798 * NAME curl_slist_append()
2799 *
2800 * DESCRIPTION
2801 *
2802 * Appends a string to a linked list. If no list exists, it will be created
2803 * first. Returns the new list, after appending.
2804 */
2805CURL_EXTERN struct curl_slist *curl_slist_append(struct curl_slist *list,
2806 const char *data);
2807
2808/*
2809 * NAME curl_slist_free_all()
2810 *
2811 * DESCRIPTION
2812 *
2813 * free a previously built curl_slist.
2814 */
2815CURL_EXTERN void curl_slist_free_all(struct curl_slist *list);
2816
2817/*
2818 * NAME curl_getdate()
2819 *
2820 * DESCRIPTION
2821 *
2822 * Returns the time, in seconds since 1 Jan 1970 of the time string given in
2823 * the first argument. The time argument in the second parameter is unused
2824 * and should be set to NULL.
2825 */
2826CURL_EXTERN time_t curl_getdate(const char *p, const time_t *unused);
2827
2828/* info about the certificate chain, for SSL backends that support it. Asked
2829 for with CURLOPT_CERTINFO / CURLINFO_CERTINFO */
2830struct curl_certinfo {
2831 int num_of_certs; /* number of certificates with information */
2832 struct curl_slist **certinfo; /* for each index in this array, there's a
2833 linked list with textual information for a
2834 certificate in the format "name:content".
2835 eg "Subject:foo", "Issuer:bar", etc. */
2836};
2837
2838/* Information about the SSL library used and the respective internal SSL
2839 handle, which can be used to obtain further information regarding the
2840 connection. Asked for with CURLINFO_TLS_SSL_PTR or CURLINFO_TLS_SESSION. */
2841struct curl_tlssessioninfo {
2842 curl_sslbackend backend;
2843 void *internals;
2844};
2845
2846#define CURLINFO_STRING 0x100000
2847#define CURLINFO_LONG 0x200000
2848#define CURLINFO_DOUBLE 0x300000
2849#define CURLINFO_SLIST 0x400000
2850#define CURLINFO_PTR 0x400000 /* same as SLIST */
2851#define CURLINFO_SOCKET 0x500000
2852#define CURLINFO_OFF_T 0x600000
2853#define CURLINFO_MASK 0x0fffff
2854#define CURLINFO_TYPEMASK 0xf00000
2855
2856typedef enum {
2857 CURLINFO_NONE, /* first, never use this */
2858 CURLINFO_EFFECTIVE_URL = CURLINFO_STRING + 1,
2859 CURLINFO_RESPONSE_CODE = CURLINFO_LONG + 2,
2860 CURLINFO_TOTAL_TIME = CURLINFO_DOUBLE + 3,
2861 CURLINFO_NAMELOOKUP_TIME = CURLINFO_DOUBLE + 4,
2862 CURLINFO_CONNECT_TIME = CURLINFO_DOUBLE + 5,
2863 CURLINFO_PRETRANSFER_TIME = CURLINFO_DOUBLE + 6,
2864 CURLINFO_SIZE_UPLOAD CURL_DEPRECATED(7.55.0, "Use CURLINFO_SIZE_UPLOAD_T")
2865 = CURLINFO_DOUBLE + 7,
2866 CURLINFO_SIZE_UPLOAD_T = CURLINFO_OFF_T + 7,
2867 CURLINFO_SIZE_DOWNLOAD
2868 CURL_DEPRECATED(7.55.0, "Use CURLINFO_SIZE_DOWNLOAD_T")
2869 = CURLINFO_DOUBLE + 8,
2870 CURLINFO_SIZE_DOWNLOAD_T = CURLINFO_OFF_T + 8,
2871 CURLINFO_SPEED_DOWNLOAD
2872 CURL_DEPRECATED(7.55.0, "Use CURLINFO_SPEED_DOWNLOAD_T")
2873 = CURLINFO_DOUBLE + 9,
2874 CURLINFO_SPEED_DOWNLOAD_T = CURLINFO_OFF_T + 9,
2875 CURLINFO_SPEED_UPLOAD
2876 CURL_DEPRECATED(7.55.0, "Use CURLINFO_SPEED_UPLOAD_T")
2877 = CURLINFO_DOUBLE + 10,
2878 CURLINFO_SPEED_UPLOAD_T = CURLINFO_OFF_T + 10,
2879 CURLINFO_HEADER_SIZE = CURLINFO_LONG + 11,
2880 CURLINFO_REQUEST_SIZE = CURLINFO_LONG + 12,
2881 CURLINFO_SSL_VERIFYRESULT = CURLINFO_LONG + 13,
2882 CURLINFO_FILETIME = CURLINFO_LONG + 14,
2883 CURLINFO_FILETIME_T = CURLINFO_OFF_T + 14,
2884 CURLINFO_CONTENT_LENGTH_DOWNLOAD
2885 CURL_DEPRECATED(7.55.0,
2886 "Use CURLINFO_CONTENT_LENGTH_DOWNLOAD_T")
2887 = CURLINFO_DOUBLE + 15,
2888 CURLINFO_CONTENT_LENGTH_DOWNLOAD_T = CURLINFO_OFF_T + 15,
2889 CURLINFO_CONTENT_LENGTH_UPLOAD
2890 CURL_DEPRECATED(7.55.0,
2891 "Use CURLINFO_CONTENT_LENGTH_UPLOAD_T")
2892 = CURLINFO_DOUBLE + 16,
2893 CURLINFO_CONTENT_LENGTH_UPLOAD_T = CURLINFO_OFF_T + 16,
2894 CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE + 17,
2895 CURLINFO_CONTENT_TYPE = CURLINFO_STRING + 18,
2896 CURLINFO_REDIRECT_TIME = CURLINFO_DOUBLE + 19,
2897 CURLINFO_REDIRECT_COUNT = CURLINFO_LONG + 20,
2898 CURLINFO_PRIVATE = CURLINFO_STRING + 21,
2899 CURLINFO_HTTP_CONNECTCODE = CURLINFO_LONG + 22,
2900 CURLINFO_HTTPAUTH_AVAIL = CURLINFO_LONG + 23,
2901 CURLINFO_PROXYAUTH_AVAIL = CURLINFO_LONG + 24,
2902 CURLINFO_OS_ERRNO = CURLINFO_LONG + 25,
2903 CURLINFO_NUM_CONNECTS = CURLINFO_LONG + 26,
2904 CURLINFO_SSL_ENGINES = CURLINFO_SLIST + 27,
2905 CURLINFO_COOKIELIST = CURLINFO_SLIST + 28,
2906 CURLINFO_LASTSOCKET CURL_DEPRECATED(7.45.0, "Use CURLINFO_ACTIVESOCKET")
2907 = CURLINFO_LONG + 29,
2908 CURLINFO_FTP_ENTRY_PATH = CURLINFO_STRING + 30,
2909 CURLINFO_REDIRECT_URL = CURLINFO_STRING + 31,
2910 CURLINFO_PRIMARY_IP = CURLINFO_STRING + 32,
2911 CURLINFO_APPCONNECT_TIME = CURLINFO_DOUBLE + 33,
2912 CURLINFO_CERTINFO = CURLINFO_PTR + 34,
2913 CURLINFO_CONDITION_UNMET = CURLINFO_LONG + 35,
2914 CURLINFO_RTSP_SESSION_ID = CURLINFO_STRING + 36,
2915 CURLINFO_RTSP_CLIENT_CSEQ = CURLINFO_LONG + 37,
2916 CURLINFO_RTSP_SERVER_CSEQ = CURLINFO_LONG + 38,
2917 CURLINFO_RTSP_CSEQ_RECV = CURLINFO_LONG + 39,
2918 CURLINFO_PRIMARY_PORT = CURLINFO_LONG + 40,
2919 CURLINFO_LOCAL_IP = CURLINFO_STRING + 41,
2920 CURLINFO_LOCAL_PORT = CURLINFO_LONG + 42,
2921 CURLINFO_TLS_SESSION CURL_DEPRECATED(7.48.0, "Use CURLINFO_TLS_SSL_PTR")
2922 = CURLINFO_PTR + 43,
2923 CURLINFO_ACTIVESOCKET = CURLINFO_SOCKET + 44,
2924 CURLINFO_TLS_SSL_PTR = CURLINFO_PTR + 45,
2925 CURLINFO_HTTP_VERSION = CURLINFO_LONG + 46,
2926 CURLINFO_PROXY_SSL_VERIFYRESULT = CURLINFO_LONG + 47,
2927 CURLINFO_PROTOCOL CURL_DEPRECATED(7.85.0, "Use CURLINFO_SCHEME")
2928 = CURLINFO_LONG + 48,
2929 CURLINFO_SCHEME = CURLINFO_STRING + 49,
2930 CURLINFO_TOTAL_TIME_T = CURLINFO_OFF_T + 50,
2931 CURLINFO_NAMELOOKUP_TIME_T = CURLINFO_OFF_T + 51,
2932 CURLINFO_CONNECT_TIME_T = CURLINFO_OFF_T + 52,
2933 CURLINFO_PRETRANSFER_TIME_T = CURLINFO_OFF_T + 53,
2934 CURLINFO_STARTTRANSFER_TIME_T = CURLINFO_OFF_T + 54,
2935 CURLINFO_REDIRECT_TIME_T = CURLINFO_OFF_T + 55,
2936 CURLINFO_APPCONNECT_TIME_T = CURLINFO_OFF_T + 56,
2937 CURLINFO_RETRY_AFTER = CURLINFO_OFF_T + 57,
2938 CURLINFO_EFFECTIVE_METHOD = CURLINFO_STRING + 58,
2939 CURLINFO_PROXY_ERROR = CURLINFO_LONG + 59,
2940 CURLINFO_REFERER = CURLINFO_STRING + 60,
2941 CURLINFO_CAINFO = CURLINFO_STRING + 61,
2942 CURLINFO_CAPATH = CURLINFO_STRING + 62,
2943 CURLINFO_XFER_ID = CURLINFO_OFF_T + 63,
2944 CURLINFO_CONN_ID = CURLINFO_OFF_T + 64,
2945 CURLINFO_QUEUE_TIME_T = CURLINFO_OFF_T + 65,
2946 CURLINFO_USED_PROXY = CURLINFO_LONG + 66,
2947 CURLINFO_LASTONE = 66
2948} CURLINFO;
2949
2950/* CURLINFO_RESPONSE_CODE is the new name for the option previously known as
2951 CURLINFO_HTTP_CODE */
2952#define CURLINFO_HTTP_CODE CURLINFO_RESPONSE_CODE
2953
2954typedef enum {
2955 CURLCLOSEPOLICY_NONE, /* first, never use this */
2956
2957 CURLCLOSEPOLICY_OLDEST,
2958 CURLCLOSEPOLICY_LEAST_RECENTLY_USED,
2959 CURLCLOSEPOLICY_LEAST_TRAFFIC,
2960 CURLCLOSEPOLICY_SLOWEST,
2961 CURLCLOSEPOLICY_CALLBACK,
2962
2963 CURLCLOSEPOLICY_LAST /* last, never use this */
2964} curl_closepolicy;
2965
2966#define CURL_GLOBAL_SSL (1<<0) /* no purpose since 7.57.0 */
2967#define CURL_GLOBAL_WIN32 (1<<1)
2968#define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL|CURL_GLOBAL_WIN32)
2969#define CURL_GLOBAL_NOTHING 0
2970#define CURL_GLOBAL_DEFAULT CURL_GLOBAL_ALL
2971#define CURL_GLOBAL_ACK_EINTR (1<<2)
2972
2973
2974/*****************************************************************************
2975 * Setup defines, protos etc for the sharing stuff.
2976 */
2977
2978/* Different data locks for a single share */
2979typedef enum {
2980 CURL_LOCK_DATA_NONE = 0,
2981 /* CURL_LOCK_DATA_SHARE is used internally to say that
2982 * the locking is just made to change the internal state of the share
2983 * itself.
2984 */
2985 CURL_LOCK_DATA_SHARE,
2986 CURL_LOCK_DATA_COOKIE,
2987 CURL_LOCK_DATA_DNS,
2988 CURL_LOCK_DATA_SSL_SESSION,
2989 CURL_LOCK_DATA_CONNECT,
2990 CURL_LOCK_DATA_PSL,
2991 CURL_LOCK_DATA_HSTS,
2992 CURL_LOCK_DATA_LAST
2993} curl_lock_data;
2994
2995/* Different lock access types */
2996typedef enum {
2997 CURL_LOCK_ACCESS_NONE = 0, /* unspecified action */
2998 CURL_LOCK_ACCESS_SHARED = 1, /* for read perhaps */
2999 CURL_LOCK_ACCESS_SINGLE = 2, /* for write perhaps */
3000 CURL_LOCK_ACCESS_LAST /* never use */
3001} curl_lock_access;
3002
3003typedef void (*curl_lock_function)(CURL *handle,
3004 curl_lock_data data,
3005 curl_lock_access locktype,
3006 void *userptr);
3007typedef void (*curl_unlock_function)(CURL *handle,
3008 curl_lock_data data,
3009 void *userptr);
3010
3011
3012typedef enum {
3013 CURLSHE_OK, /* all is fine */
3014 CURLSHE_BAD_OPTION, /* 1 */
3015 CURLSHE_IN_USE, /* 2 */
3016 CURLSHE_INVALID, /* 3 */
3017 CURLSHE_NOMEM, /* 4 out of memory */
3018 CURLSHE_NOT_BUILT_IN, /* 5 feature not present in lib */
3019 CURLSHE_LAST /* never use */
3020} CURLSHcode;
3021
3022typedef enum {
3023 CURLSHOPT_NONE, /* don't use */
3024 CURLSHOPT_SHARE, /* specify a data type to share */
3025 CURLSHOPT_UNSHARE, /* specify which data type to stop sharing */
3026 CURLSHOPT_LOCKFUNC, /* pass in a 'curl_lock_function' pointer */
3027 CURLSHOPT_UNLOCKFUNC, /* pass in a 'curl_unlock_function' pointer */
3028 CURLSHOPT_USERDATA, /* pass in a user data pointer used in the lock/unlock
3029 callback functions */
3030 CURLSHOPT_LAST /* never use */
3031} CURLSHoption;
3032
3033CURL_EXTERN CURLSH *curl_share_init(void);
3034CURL_EXTERN CURLSHcode curl_share_setopt(CURLSH *share, CURLSHoption option,
3035 ...);
3036CURL_EXTERN CURLSHcode curl_share_cleanup(CURLSH *share);
3037
3038/****************************************************************************
3039 * Structures for querying information about the curl library at runtime.
3040 */
3041
3042typedef enum {
3043 CURLVERSION_FIRST,
3044 CURLVERSION_SECOND,
3045 CURLVERSION_THIRD,
3046 CURLVERSION_FOURTH,
3047 CURLVERSION_FIFTH,
3048 CURLVERSION_SIXTH,
3049 CURLVERSION_SEVENTH,
3050 CURLVERSION_EIGHTH,
3051 CURLVERSION_NINTH,
3052 CURLVERSION_TENTH,
3053 CURLVERSION_ELEVENTH,
3054 CURLVERSION_LAST /* never actually use this */
3055} CURLversion;
3056
3057/* The 'CURLVERSION_NOW' is the symbolic name meant to be used by
3058 basically all programs ever that want to get version information. It is
3059 meant to be a built-in version number for what kind of struct the caller
3060 expects. If the struct ever changes, we redefine the NOW to another enum
3061 from above. */
3062#define CURLVERSION_NOW CURLVERSION_ELEVENTH
3063
3064struct curl_version_info_data {
3065 CURLversion age; /* age of the returned struct */
3066 const char *version; /* LIBCURL_VERSION */
3067 unsigned int version_num; /* LIBCURL_VERSION_NUM */
3068 const char *host; /* OS/host/cpu/machine when configured */
3069 int features; /* bitmask, see defines below */
3070 const char *ssl_version; /* human readable string */
3071 long ssl_version_num; /* not used anymore, always 0 */
3072 const char *libz_version; /* human readable string */
3073 /* protocols is terminated by an entry with a NULL protoname */
3074 const char * const *protocols;
3075
3076 /* The fields below this were added in CURLVERSION_SECOND */
3077 const char *ares;
3078 int ares_num;
3079
3080 /* This field was added in CURLVERSION_THIRD */
3081 const char *libidn;
3082
3083 /* These field were added in CURLVERSION_FOURTH */
3084
3085 /* Same as '_libiconv_version' if built with HAVE_ICONV */
3086 int iconv_ver_num;
3087
3088 const char *libssh_version; /* human readable string */
3089
3090 /* These fields were added in CURLVERSION_FIFTH */
3091 unsigned int brotli_ver_num; /* Numeric Brotli version
3092 (MAJOR << 24) | (MINOR << 12) | PATCH */
3093 const char *brotli_version; /* human readable string. */
3094
3095 /* These fields were added in CURLVERSION_SIXTH */
3096 unsigned int nghttp2_ver_num; /* Numeric nghttp2 version
3097 (MAJOR << 16) | (MINOR << 8) | PATCH */
3098 const char *nghttp2_version; /* human readable string. */
3099 const char *quic_version; /* human readable quic (+ HTTP/3) library +
3100 version or NULL */
3101
3102 /* These fields were added in CURLVERSION_SEVENTH */
3103 const char *cainfo; /* the built-in default CURLOPT_CAINFO, might
3104 be NULL */
3105 const char *capath; /* the built-in default CURLOPT_CAPATH, might
3106 be NULL */
3107
3108 /* These fields were added in CURLVERSION_EIGHTH */
3109 unsigned int zstd_ver_num; /* Numeric Zstd version
3110 (MAJOR << 24) | (MINOR << 12) | PATCH */
3111 const char *zstd_version; /* human readable string. */
3112
3113 /* These fields were added in CURLVERSION_NINTH */
3114 const char *hyper_version; /* human readable string. */
3115
3116 /* These fields were added in CURLVERSION_TENTH */
3117 const char *gsasl_version; /* human readable string. */
3118
3119 /* These fields were added in CURLVERSION_ELEVENTH */
3120 /* feature_names is terminated by an entry with a NULL feature name */
3121 const char * const *feature_names;
3122};
3123typedef struct curl_version_info_data curl_version_info_data;
3124
3125#define CURL_VERSION_IPV6 (1<<0) /* IPv6-enabled */
3126#define CURL_VERSION_KERBEROS4 (1<<1) /* Kerberos V4 auth is supported
3127 (deprecated) */
3128#define CURL_VERSION_SSL (1<<2) /* SSL options are present */
3129#define CURL_VERSION_LIBZ (1<<3) /* libz features are present */
3130#define CURL_VERSION_NTLM (1<<4) /* NTLM auth is supported */
3131#define CURL_VERSION_GSSNEGOTIATE (1<<5) /* Negotiate auth is supported
3132 (deprecated) */
3133#define CURL_VERSION_DEBUG (1<<6) /* Built with debug capabilities */
3134#define CURL_VERSION_ASYNCHDNS (1<<7) /* Asynchronous DNS resolves */
3135#define CURL_VERSION_SPNEGO (1<<8) /* SPNEGO auth is supported */
3136#define CURL_VERSION_LARGEFILE (1<<9) /* Supports files larger than 2GB */
3137#define CURL_VERSION_IDN (1<<10) /* Internationized Domain Names are
3138 supported */
3139#define CURL_VERSION_SSPI (1<<11) /* Built against Windows SSPI */
3140#define CURL_VERSION_CONV (1<<12) /* Character conversions supported */
3141#define CURL_VERSION_CURLDEBUG (1<<13) /* Debug memory tracking supported */
3142#define CURL_VERSION_TLSAUTH_SRP (1<<14) /* TLS-SRP auth is supported */
3143#define CURL_VERSION_NTLM_WB (1<<15) /* NTLM delegation to winbind helper
3144 is supported */
3145#define CURL_VERSION_HTTP2 (1<<16) /* HTTP2 support built-in */
3146#define CURL_VERSION_GSSAPI (1<<17) /* Built against a GSS-API library */
3147#define CURL_VERSION_KERBEROS5 (1<<18) /* Kerberos V5 auth is supported */
3148#define CURL_VERSION_UNIX_SOCKETS (1<<19) /* Unix domain sockets support */
3149#define CURL_VERSION_PSL (1<<20) /* Mozilla's Public Suffix List, used
3150 for cookie domain verification */
3151#define CURL_VERSION_HTTPS_PROXY (1<<21) /* HTTPS-proxy support built-in */
3152#define CURL_VERSION_MULTI_SSL (1<<22) /* Multiple SSL backends available */
3153#define CURL_VERSION_BROTLI (1<<23) /* Brotli features are present. */
3154#define CURL_VERSION_ALTSVC (1<<24) /* Alt-Svc handling built-in */
3155#define CURL_VERSION_HTTP3 (1<<25) /* HTTP3 support built-in */
3156#define CURL_VERSION_ZSTD (1<<26) /* zstd features are present */
3157#define CURL_VERSION_UNICODE (1<<27) /* Unicode support on Windows */
3158#define CURL_VERSION_HSTS (1<<28) /* HSTS is supported */
3159#define CURL_VERSION_GSASL (1<<29) /* libgsasl is supported */
3160#define CURL_VERSION_THREADSAFE (1<<30) /* libcurl API is thread-safe */
3161
3162 /*
3163 * NAME curl_version_info()
3164 *
3165 * DESCRIPTION
3166 *
3167 * This function returns a pointer to a static copy of the version info
3168 * struct. See above.
3169 */
3170CURL_EXTERN curl_version_info_data *curl_version_info(CURLversion);
3171
3172/*
3173 * NAME curl_easy_strerror()
3174 *
3175 * DESCRIPTION
3176 *
3177 * The curl_easy_strerror function may be used to turn a CURLcode value
3178 * into the equivalent human readable error string. This is useful
3179 * for printing meaningful error messages.
3180 */
3181CURL_EXTERN const char *curl_easy_strerror(CURLcode);
3182
3183/*
3184 * NAME curl_share_strerror()
3185 *
3186 * DESCRIPTION
3187 *
3188 * The curl_share_strerror function may be used to turn a CURLSHcode value
3189 * into the equivalent human readable error string. This is useful
3190 * for printing meaningful error messages.
3191 */
3192CURL_EXTERN const char *curl_share_strerror(CURLSHcode);
3193
3194/*
3195 * NAME curl_easy_pause()
3196 *
3197 * DESCRIPTION
3198 *
3199 * The curl_easy_pause function pauses or unpauses transfers. Select the new
3200 * state by setting the bitmask, use the convenience defines below.
3201 *
3202 */
3203CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask);
3204
3205#define CURLPAUSE_RECV (1<<0)
3206#define CURLPAUSE_RECV_CONT (0)
3207
3208#define CURLPAUSE_SEND (1<<2)
3209#define CURLPAUSE_SEND_CONT (0)
3210
3211#define CURLPAUSE_ALL (CURLPAUSE_RECV|CURLPAUSE_SEND)
3212#define CURLPAUSE_CONT (CURLPAUSE_RECV_CONT|CURLPAUSE_SEND_CONT)
3213
3214#ifdef __cplusplus
3215} /* end of extern "C" */
3216#endif
3217
3218/* unfortunately, the easy.h and multi.h include files need options and info
3219 stuff before they can be included! */
3220#include "easy.h" /* nothing in curl is fun without the easy stuff */
3221#include "multi.h"
3222#include "urlapi.h"
3223#include "options.h"
3224#include "header.h"
3225#include "websockets.h"
3226#include "mprintf.h"
3227
3228/* the typechecker doesn't work in C++ (yet) */
3229#if defined(__GNUC__) && defined(__GNUC_MINOR__) && \
3230 ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && \
3231 !defined(__cplusplus) && !defined(CURL_DISABLE_TYPECHECK)
3232#include "typecheck-gcc.h"
3233#else
3234#if defined(__STDC__) && (__STDC__ >= 1)
3235/* This preprocessor magic that replaces a call with the exact same call is
3236 only done to make sure application authors pass exactly three arguments
3237 to these functions. */
3238#define curl_easy_setopt(handle,opt,param) curl_easy_setopt(handle,opt,param)
3239#define curl_easy_getinfo(handle,info,arg) curl_easy_getinfo(handle,info,arg)
3240#define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param)
3241#define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param)
3242#endif /* __STDC__ >= 1 */
3243#endif /* gcc >= 4.3 && !__cplusplus && !CURL_DISABLE_TYPECHECK */
3244
3245#endif /* CURLINC_CURL_H */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette