Install curl-7.25.0.tar.bz2
[msysgit.git] / mingw / include / curl / curl.h
blobf2501cd2b44f9c42b8183c8e6a1c08c6c787b9b7
1 #ifndef __CURL_CURL_H
2 #define __CURL_CURL_H
3 /***************************************************************************
4 * _ _ ____ _
5 * Project ___| | | | _ \| |
6 * / __| | | | |_) | |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
10 * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
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 http://curl.haxx.se/docs/copyright.html.
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.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 ***************************************************************************/
26 * If you have libcurl problems, all docs and details are found here:
27 * http://curl.haxx.se/libcurl/
29 * curl-library mailing list subscription and unsubscription web interface:
30 * http://cool.haxx.se/mailman/listinfo/curl-library/
33 #include "curlver.h" /* libcurl version defines */
34 #include "curlbuild.h" /* libcurl build definitions */
35 #include "curlrules.h" /* libcurl rules enforcement */
38 * Define WIN32 when build target is Win32 API
41 #if (defined(_WIN32) || defined(__WIN32__)) && \
42 !defined(WIN32) && !defined(__SYMBIAN32__)
43 #define WIN32
44 #endif
46 #include <stdio.h>
47 #include <limits.h>
49 #if defined(__FreeBSD__) && (__FreeBSD__ >= 2)
50 /* Needed for __FreeBSD_version symbol definition */
51 #include <osreldate.h>
52 #endif
54 /* The include stuff here below is mainly for time_t! */
55 #include <sys/types.h>
56 #include <time.h>
58 #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__CYGWIN__)
59 #if !(defined(_WINSOCKAPI_) || defined(_WINSOCK_H) || defined(__LWIP_OPT_H__))
60 /* The check above prevents the winsock2 inclusion if winsock.h already was
61 included, since they can't co-exist without problems */
62 #include <winsock2.h>
63 #include <ws2tcpip.h>
64 #endif
65 #endif
67 /* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish
68 libc5-based Linux systems. Only include it on systems that are known to
69 require it! */
70 #if defined(_AIX) || defined(__NOVELL_LIBC__) || defined(__NetBSD__) || \
71 defined(__minix) || defined(__SYMBIAN32__) || defined(__INTEGRITY) || \
72 defined(ANDROID) || defined(__ANDROID__) || \
73 (defined(__FreeBSD_version) && (__FreeBSD_version < 800000))
74 #include <sys/select.h>
75 #endif
77 #if !defined(WIN32) && !defined(_WIN32_WCE)
78 #include <sys/socket.h>
79 #endif
81 #if !defined(WIN32) && !defined(__WATCOMC__) && !defined(__VXWORKS__)
82 #include <sys/time.h>
83 #endif
85 #ifdef __BEOS__
86 #include <support/SupportDefs.h>
87 #endif
89 #ifdef __cplusplus
90 extern "C" {
91 #endif
93 typedef void CURL;
96 * Decorate exportable functions for Win32 and Symbian OS DLL linking.
97 * This avoids using a .def file for building libcurl.dll.
99 #if (defined(WIN32) || defined(_WIN32) || defined(__SYMBIAN32__)) && \
100 !defined(CURL_STATICLIB)
101 #if defined(BUILDING_LIBCURL)
102 #define CURL_EXTERN __declspec(dllexport)
103 #else
104 #define CURL_EXTERN __declspec(dllimport)
105 #endif
106 #else
108 #ifdef CURL_HIDDEN_SYMBOLS
110 * This definition is used to make external definitions visible in the
111 * shared library when symbols are hidden by default. It makes no
112 * difference when compiling applications whether this is set or not,
113 * only when compiling the library.
115 #define CURL_EXTERN CURL_EXTERN_SYMBOL
116 #else
117 #define CURL_EXTERN
118 #endif
119 #endif
121 #ifndef curl_socket_typedef
122 /* socket typedef */
123 #if defined(WIN32) && !defined(__LWIP_OPT_H__)
124 typedef SOCKET curl_socket_t;
125 #define CURL_SOCKET_BAD INVALID_SOCKET
126 #else
127 typedef int curl_socket_t;
128 #define CURL_SOCKET_BAD -1
129 #endif
130 #define curl_socket_typedef
131 #endif /* curl_socket_typedef */
133 struct curl_httppost {
134 struct curl_httppost *next; /* next entry in the list */
135 char *name; /* pointer to allocated name */
136 long namelength; /* length of name length */
137 char *contents; /* pointer to allocated data contents */
138 long contentslength; /* length of contents field */
139 char *buffer; /* pointer to allocated buffer contents */
140 long bufferlength; /* length of buffer field */
141 char *contenttype; /* Content-Type */
142 struct curl_slist* contentheader; /* list of extra headers for this form */
143 struct curl_httppost *more; /* if one field name has more than one
144 file, this link should link to following
145 files */
146 long flags; /* as defined below */
147 #define HTTPPOST_FILENAME (1<<0) /* specified content is a file name */
148 #define HTTPPOST_READFILE (1<<1) /* specified content is a file name */
149 #define HTTPPOST_PTRNAME (1<<2) /* name is only stored pointer
150 do not free in formfree */
151 #define HTTPPOST_PTRCONTENTS (1<<3) /* contents is only stored pointer
152 do not free in formfree */
153 #define HTTPPOST_BUFFER (1<<4) /* upload file from buffer */
154 #define HTTPPOST_PTRBUFFER (1<<5) /* upload file from pointer contents */
155 #define HTTPPOST_CALLBACK (1<<6) /* upload file contents by using the
156 regular read callback to get the data
157 and pass the given pointer as custom
158 pointer */
160 char *showfilename; /* The file name to show. If not set, the
161 actual file name will be used (if this
162 is a file part) */
163 void *userp; /* custom pointer used for
164 HTTPPOST_CALLBACK posts */
167 typedef int (*curl_progress_callback)(void *clientp,
168 double dltotal,
169 double dlnow,
170 double ultotal,
171 double ulnow);
173 #ifndef CURL_MAX_WRITE_SIZE
174 /* Tests have proven that 20K is a very bad buffer size for uploads on
175 Windows, while 16K for some odd reason performed a lot better.
176 We do the ifndef check to allow this value to easier be changed at build
177 time for those who feel adventurous. The practical minimum is about
178 400 bytes since libcurl uses a buffer of this size as a scratch area
179 (unrelated to network send operations). */
180 #define CURL_MAX_WRITE_SIZE 16384
181 #endif
183 #ifndef CURL_MAX_HTTP_HEADER
184 /* The only reason to have a max limit for this is to avoid the risk of a bad
185 server feeding libcurl with a never-ending header that will cause reallocs
186 infinitely */
187 #define CURL_MAX_HTTP_HEADER (100*1024)
188 #endif
190 /* This is a magic return code for the write callback that, when returned,
191 will signal libcurl to pause receiving on the current transfer. */
192 #define CURL_WRITEFUNC_PAUSE 0x10000001
194 typedef size_t (*curl_write_callback)(char *buffer,
195 size_t size,
196 size_t nitems,
197 void *outstream);
201 /* enumeration of file types */
202 typedef enum {
203 CURLFILETYPE_FILE = 0,
204 CURLFILETYPE_DIRECTORY,
205 CURLFILETYPE_SYMLINK,
206 CURLFILETYPE_DEVICE_BLOCK,
207 CURLFILETYPE_DEVICE_CHAR,
208 CURLFILETYPE_NAMEDPIPE,
209 CURLFILETYPE_SOCKET,
210 CURLFILETYPE_DOOR, /* is possible only on Sun Solaris now */
212 CURLFILETYPE_UNKNOWN /* should never occur */
213 } curlfiletype;
215 #define CURLFINFOFLAG_KNOWN_FILENAME (1<<0)
216 #define CURLFINFOFLAG_KNOWN_FILETYPE (1<<1)
217 #define CURLFINFOFLAG_KNOWN_TIME (1<<2)
218 #define CURLFINFOFLAG_KNOWN_PERM (1<<3)
219 #define CURLFINFOFLAG_KNOWN_UID (1<<4)
220 #define CURLFINFOFLAG_KNOWN_GID (1<<5)
221 #define CURLFINFOFLAG_KNOWN_SIZE (1<<6)
222 #define CURLFINFOFLAG_KNOWN_HLINKCOUNT (1<<7)
224 /* Content of this structure depends on information which is known and is
225 achievable (e.g. by FTP LIST parsing). Please see the url_easy_setopt(3) man
226 page for callbacks returning this structure -- some fields are mandatory,
227 some others are optional. The FLAG field has special meaning. */
228 struct curl_fileinfo {
229 char *filename;
230 curlfiletype filetype;
231 time_t time;
232 unsigned int perm;
233 int uid;
234 int gid;
235 curl_off_t size;
236 long int hardlinks;
238 struct {
239 /* If some of these fields is not NULL, it is a pointer to b_data. */
240 char *time;
241 char *perm;
242 char *user;
243 char *group;
244 char *target; /* pointer to the target filename of a symlink */
245 } strings;
247 unsigned int flags;
249 /* used internally */
250 char * b_data;
251 size_t b_size;
252 size_t b_used;
255 /* return codes for CURLOPT_CHUNK_BGN_FUNCTION */
256 #define CURL_CHUNK_BGN_FUNC_OK 0
257 #define CURL_CHUNK_BGN_FUNC_FAIL 1 /* tell the lib to end the task */
258 #define CURL_CHUNK_BGN_FUNC_SKIP 2 /* skip this chunk over */
260 /* if splitting of data transfer is enabled, this callback is called before
261 download of an individual chunk started. Note that parameter "remains" works
262 only for FTP wildcard downloading (for now), otherwise is not used */
263 typedef long (*curl_chunk_bgn_callback)(const void *transfer_info,
264 void *ptr,
265 int remains);
267 /* return codes for CURLOPT_CHUNK_END_FUNCTION */
268 #define CURL_CHUNK_END_FUNC_OK 0
269 #define CURL_CHUNK_END_FUNC_FAIL 1 /* tell the lib to end the task */
271 /* If splitting of data transfer is enabled this callback is called after
272 download of an individual chunk finished.
273 Note! After this callback was set then it have to be called FOR ALL chunks.
274 Even if downloading of this chunk was skipped in CHUNK_BGN_FUNC.
275 This is the reason why we don't need "transfer_info" parameter in this
276 callback and we are not interested in "remains" parameter too. */
277 typedef long (*curl_chunk_end_callback)(void *ptr);
279 /* return codes for FNMATCHFUNCTION */
280 #define CURL_FNMATCHFUNC_MATCH 0 /* string corresponds to the pattern */
281 #define CURL_FNMATCHFUNC_NOMATCH 1 /* pattern doesn't match the string */
282 #define CURL_FNMATCHFUNC_FAIL 2 /* an error occurred */
284 /* callback type for wildcard downloading pattern matching. If the
285 string matches the pattern, return CURL_FNMATCHFUNC_MATCH value, etc. */
286 typedef int (*curl_fnmatch_callback)(void *ptr,
287 const char *pattern,
288 const char *string);
290 /* These are the return codes for the seek callbacks */
291 #define CURL_SEEKFUNC_OK 0
292 #define CURL_SEEKFUNC_FAIL 1 /* fail the entire transfer */
293 #define CURL_SEEKFUNC_CANTSEEK 2 /* tell libcurl seeking can't be done, so
294 libcurl might try other means instead */
295 typedef int (*curl_seek_callback)(void *instream,
296 curl_off_t offset,
297 int origin); /* 'whence' */
299 /* This is a return code for the read callback that, when returned, will
300 signal libcurl to immediately abort the current transfer. */
301 #define CURL_READFUNC_ABORT 0x10000000
302 /* This is a return code for the read callback that, when returned, will
303 signal libcurl to pause sending data on the current transfer. */
304 #define CURL_READFUNC_PAUSE 0x10000001
306 typedef size_t (*curl_read_callback)(char *buffer,
307 size_t size,
308 size_t nitems,
309 void *instream);
311 typedef enum {
312 CURLSOCKTYPE_IPCXN, /* socket created for a specific IP connection */
313 CURLSOCKTYPE_LAST /* never use */
314 } curlsocktype;
316 /* The return code from the sockopt_callback can signal information back
317 to libcurl: */
318 #define CURL_SOCKOPT_OK 0
319 #define CURL_SOCKOPT_ERROR 1 /* causes libcurl to abort and return
320 CURLE_ABORTED_BY_CALLBACK */
321 #define CURL_SOCKOPT_ALREADY_CONNECTED 2
323 typedef int (*curl_sockopt_callback)(void *clientp,
324 curl_socket_t curlfd,
325 curlsocktype purpose);
327 struct curl_sockaddr {
328 int family;
329 int socktype;
330 int protocol;
331 unsigned int addrlen; /* addrlen was a socklen_t type before 7.18.0 but it
332 turned really ugly and painful on the systems that
333 lack this type */
334 struct sockaddr addr;
337 typedef curl_socket_t
338 (*curl_opensocket_callback)(void *clientp,
339 curlsocktype purpose,
340 struct curl_sockaddr *address);
342 typedef int
343 (*curl_closesocket_callback)(void *clientp, curl_socket_t item);
345 typedef enum {
346 CURLIOE_OK, /* I/O operation successful */
347 CURLIOE_UNKNOWNCMD, /* command was unknown to callback */
348 CURLIOE_FAILRESTART, /* failed to restart the read */
349 CURLIOE_LAST /* never use */
350 } curlioerr;
352 typedef enum {
353 CURLIOCMD_NOP, /* no operation */
354 CURLIOCMD_RESTARTREAD, /* restart the read stream from start */
355 CURLIOCMD_LAST /* never use */
356 } curliocmd;
358 typedef curlioerr (*curl_ioctl_callback)(CURL *handle,
359 int cmd,
360 void *clientp);
363 * The following typedef's are signatures of malloc, free, realloc, strdup and
364 * calloc respectively. Function pointers of these types can be passed to the
365 * curl_global_init_mem() function to set user defined memory management
366 * callback routines.
368 typedef void *(*curl_malloc_callback)(size_t size);
369 typedef void (*curl_free_callback)(void *ptr);
370 typedef void *(*curl_realloc_callback)(void *ptr, size_t size);
371 typedef char *(*curl_strdup_callback)(const char *str);
372 typedef void *(*curl_calloc_callback)(size_t nmemb, size_t size);
374 /* the kind of data that is passed to information_callback*/
375 typedef enum {
376 CURLINFO_TEXT = 0,
377 CURLINFO_HEADER_IN, /* 1 */
378 CURLINFO_HEADER_OUT, /* 2 */
379 CURLINFO_DATA_IN, /* 3 */
380 CURLINFO_DATA_OUT, /* 4 */
381 CURLINFO_SSL_DATA_IN, /* 5 */
382 CURLINFO_SSL_DATA_OUT, /* 6 */
383 CURLINFO_END
384 } curl_infotype;
386 typedef int (*curl_debug_callback)
387 (CURL *handle, /* the handle/transfer this concerns */
388 curl_infotype type, /* what kind of data */
389 char *data, /* points to the data */
390 size_t size, /* size of the data pointed to */
391 void *userptr); /* whatever the user please */
393 /* All possible error codes from all sorts of curl functions. Future versions
394 may return other values, stay prepared.
396 Always add new return codes last. Never *EVER* remove any. The return
397 codes must remain the same!
400 typedef enum {
401 CURLE_OK = 0,
402 CURLE_UNSUPPORTED_PROTOCOL, /* 1 */
403 CURLE_FAILED_INIT, /* 2 */
404 CURLE_URL_MALFORMAT, /* 3 */
405 CURLE_NOT_BUILT_IN, /* 4 - [was obsoleted in August 2007 for
406 7.17.0, reused in April 2011 for 7.21.5] */
407 CURLE_COULDNT_RESOLVE_PROXY, /* 5 */
408 CURLE_COULDNT_RESOLVE_HOST, /* 6 */
409 CURLE_COULDNT_CONNECT, /* 7 */
410 CURLE_FTP_WEIRD_SERVER_REPLY, /* 8 */
411 CURLE_REMOTE_ACCESS_DENIED, /* 9 a service was denied by the server
412 due to lack of access - when login fails
413 this is not returned. */
414 CURLE_FTP_ACCEPT_FAILED, /* 10 - [was obsoleted in April 2006 for
415 7.15.4, reused in Dec 2011 for 7.24.0]*/
416 CURLE_FTP_WEIRD_PASS_REPLY, /* 11 */
417 CURLE_FTP_ACCEPT_TIMEOUT, /* 12 - timeout occurred accepting server
418 [was obsoleted in August 2007 for 7.17.0,
419 reused in Dec 2011 for 7.24.0]*/
420 CURLE_FTP_WEIRD_PASV_REPLY, /* 13 */
421 CURLE_FTP_WEIRD_227_FORMAT, /* 14 */
422 CURLE_FTP_CANT_GET_HOST, /* 15 */
423 CURLE_OBSOLETE16, /* 16 - NOT USED */
424 CURLE_FTP_COULDNT_SET_TYPE, /* 17 */
425 CURLE_PARTIAL_FILE, /* 18 */
426 CURLE_FTP_COULDNT_RETR_FILE, /* 19 */
427 CURLE_OBSOLETE20, /* 20 - NOT USED */
428 CURLE_QUOTE_ERROR, /* 21 - quote command failure */
429 CURLE_HTTP_RETURNED_ERROR, /* 22 */
430 CURLE_WRITE_ERROR, /* 23 */
431 CURLE_OBSOLETE24, /* 24 - NOT USED */
432 CURLE_UPLOAD_FAILED, /* 25 - failed upload "command" */
433 CURLE_READ_ERROR, /* 26 - couldn't open/read from file */
434 CURLE_OUT_OF_MEMORY, /* 27 */
435 /* Note: CURLE_OUT_OF_MEMORY may sometimes indicate a conversion error
436 instead of a memory allocation error if CURL_DOES_CONVERSIONS
437 is defined
439 CURLE_OPERATION_TIMEDOUT, /* 28 - the timeout time was reached */
440 CURLE_OBSOLETE29, /* 29 - NOT USED */
441 CURLE_FTP_PORT_FAILED, /* 30 - FTP PORT operation failed */
442 CURLE_FTP_COULDNT_USE_REST, /* 31 - the REST command failed */
443 CURLE_OBSOLETE32, /* 32 - NOT USED */
444 CURLE_RANGE_ERROR, /* 33 - RANGE "command" didn't work */
445 CURLE_HTTP_POST_ERROR, /* 34 */
446 CURLE_SSL_CONNECT_ERROR, /* 35 - wrong when connecting with SSL */
447 CURLE_BAD_DOWNLOAD_RESUME, /* 36 - couldn't resume download */
448 CURLE_FILE_COULDNT_READ_FILE, /* 37 */
449 CURLE_LDAP_CANNOT_BIND, /* 38 */
450 CURLE_LDAP_SEARCH_FAILED, /* 39 */
451 CURLE_OBSOLETE40, /* 40 - NOT USED */
452 CURLE_FUNCTION_NOT_FOUND, /* 41 */
453 CURLE_ABORTED_BY_CALLBACK, /* 42 */
454 CURLE_BAD_FUNCTION_ARGUMENT, /* 43 */
455 CURLE_OBSOLETE44, /* 44 - NOT USED */
456 CURLE_INTERFACE_FAILED, /* 45 - CURLOPT_INTERFACE failed */
457 CURLE_OBSOLETE46, /* 46 - NOT USED */
458 CURLE_TOO_MANY_REDIRECTS , /* 47 - catch endless re-direct loops */
459 CURLE_UNKNOWN_OPTION, /* 48 - User specified an unknown option */
460 CURLE_TELNET_OPTION_SYNTAX , /* 49 - Malformed telnet option */
461 CURLE_OBSOLETE50, /* 50 - NOT USED */
462 CURLE_PEER_FAILED_VERIFICATION, /* 51 - peer's certificate or fingerprint
463 wasn't verified fine */
464 CURLE_GOT_NOTHING, /* 52 - when this is a specific error */
465 CURLE_SSL_ENGINE_NOTFOUND, /* 53 - SSL crypto engine not found */
466 CURLE_SSL_ENGINE_SETFAILED, /* 54 - can not set SSL crypto engine as
467 default */
468 CURLE_SEND_ERROR, /* 55 - failed sending network data */
469 CURLE_RECV_ERROR, /* 56 - failure in receiving network data */
470 CURLE_OBSOLETE57, /* 57 - NOT IN USE */
471 CURLE_SSL_CERTPROBLEM, /* 58 - problem with the local certificate */
472 CURLE_SSL_CIPHER, /* 59 - couldn't use specified cipher */
473 CURLE_SSL_CACERT, /* 60 - problem with the CA cert (path?) */
474 CURLE_BAD_CONTENT_ENCODING, /* 61 - Unrecognized/bad encoding */
475 CURLE_LDAP_INVALID_URL, /* 62 - Invalid LDAP URL */
476 CURLE_FILESIZE_EXCEEDED, /* 63 - Maximum file size exceeded */
477 CURLE_USE_SSL_FAILED, /* 64 - Requested FTP SSL level failed */
478 CURLE_SEND_FAIL_REWIND, /* 65 - Sending the data requires a rewind
479 that failed */
480 CURLE_SSL_ENGINE_INITFAILED, /* 66 - failed to initialise ENGINE */
481 CURLE_LOGIN_DENIED, /* 67 - user, password or similar was not
482 accepted and we failed to login */
483 CURLE_TFTP_NOTFOUND, /* 68 - file not found on server */
484 CURLE_TFTP_PERM, /* 69 - permission problem on server */
485 CURLE_REMOTE_DISK_FULL, /* 70 - out of disk space on server */
486 CURLE_TFTP_ILLEGAL, /* 71 - Illegal TFTP operation */
487 CURLE_TFTP_UNKNOWNID, /* 72 - Unknown transfer ID */
488 CURLE_REMOTE_FILE_EXISTS, /* 73 - File already exists */
489 CURLE_TFTP_NOSUCHUSER, /* 74 - No such user */
490 CURLE_CONV_FAILED, /* 75 - conversion failed */
491 CURLE_CONV_REQD, /* 76 - caller must register conversion
492 callbacks using curl_easy_setopt options
493 CURLOPT_CONV_FROM_NETWORK_FUNCTION,
494 CURLOPT_CONV_TO_NETWORK_FUNCTION, and
495 CURLOPT_CONV_FROM_UTF8_FUNCTION */
496 CURLE_SSL_CACERT_BADFILE, /* 77 - could not load CACERT file, missing
497 or wrong format */
498 CURLE_REMOTE_FILE_NOT_FOUND, /* 78 - remote file not found */
499 CURLE_SSH, /* 79 - error from the SSH layer, somewhat
500 generic so the error message will be of
501 interest when this has happened */
503 CURLE_SSL_SHUTDOWN_FAILED, /* 80 - Failed to shut down the SSL
504 connection */
505 CURLE_AGAIN, /* 81 - socket is not ready for send/recv,
506 wait till it's ready and try again (Added
507 in 7.18.2) */
508 CURLE_SSL_CRL_BADFILE, /* 82 - could not load CRL file, missing or
509 wrong format (Added in 7.19.0) */
510 CURLE_SSL_ISSUER_ERROR, /* 83 - Issuer check failed. (Added in
511 7.19.0) */
512 CURLE_FTP_PRET_FAILED, /* 84 - a PRET command failed */
513 CURLE_RTSP_CSEQ_ERROR, /* 85 - mismatch of RTSP CSeq numbers */
514 CURLE_RTSP_SESSION_ERROR, /* 86 - mismatch of RTSP Session Ids */
515 CURLE_FTP_BAD_FILE_LIST, /* 87 - unable to parse FTP file list */
516 CURLE_CHUNK_FAILED, /* 88 - chunk callback reported error */
517 CURL_LAST /* never use! */
518 } CURLcode;
520 #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
521 the obsolete stuff removed! */
523 /* Previously obsoletes error codes re-used in 7.24.0 */
524 #define CURLE_OBSOLETE10 CURLE_FTP_ACCEPT_FAILED
525 #define CURLE_OBSOLETE12 CURLE_FTP_ACCEPT_TIMEOUT
527 /* compatibility with older names */
528 #define CURLOPT_ENCODING CURLOPT_ACCEPT_ENCODING
530 /* The following were added in 7.21.5, April 2011 */
531 #define CURLE_UNKNOWN_TELNET_OPTION CURLE_UNKNOWN_OPTION
533 /* The following were added in 7.17.1 */
534 /* These are scheduled to disappear by 2009 */
535 #define CURLE_SSL_PEER_CERTIFICATE CURLE_PEER_FAILED_VERIFICATION
537 /* The following were added in 7.17.0 */
538 /* These are scheduled to disappear by 2009 */
539 #define CURLE_OBSOLETE CURLE_OBSOLETE50 /* no one should be using this! */
540 #define CURLE_BAD_PASSWORD_ENTERED CURLE_OBSOLETE46
541 #define CURLE_BAD_CALLING_ORDER CURLE_OBSOLETE44
542 #define CURLE_FTP_USER_PASSWORD_INCORRECT CURLE_OBSOLETE10
543 #define CURLE_FTP_CANT_RECONNECT CURLE_OBSOLETE16
544 #define CURLE_FTP_COULDNT_GET_SIZE CURLE_OBSOLETE32
545 #define CURLE_FTP_COULDNT_SET_ASCII CURLE_OBSOLETE29
546 #define CURLE_FTP_WEIRD_USER_REPLY CURLE_OBSOLETE12
547 #define CURLE_FTP_WRITE_ERROR CURLE_OBSOLETE20
548 #define CURLE_LIBRARY_NOT_FOUND CURLE_OBSOLETE40
549 #define CURLE_MALFORMAT_USER CURLE_OBSOLETE24
550 #define CURLE_SHARE_IN_USE CURLE_OBSOLETE57
551 #define CURLE_URL_MALFORMAT_USER CURLE_NOT_BUILT_IN
553 #define CURLE_FTP_ACCESS_DENIED CURLE_REMOTE_ACCESS_DENIED
554 #define CURLE_FTP_COULDNT_SET_BINARY CURLE_FTP_COULDNT_SET_TYPE
555 #define CURLE_FTP_QUOTE_ERROR CURLE_QUOTE_ERROR
556 #define CURLE_TFTP_DISKFULL CURLE_REMOTE_DISK_FULL
557 #define CURLE_TFTP_EXISTS CURLE_REMOTE_FILE_EXISTS
558 #define CURLE_HTTP_RANGE_ERROR CURLE_RANGE_ERROR
559 #define CURLE_FTP_SSL_FAILED CURLE_USE_SSL_FAILED
561 /* The following were added earlier */
563 #define CURLE_OPERATION_TIMEOUTED CURLE_OPERATION_TIMEDOUT
565 #define CURLE_HTTP_NOT_FOUND CURLE_HTTP_RETURNED_ERROR
566 #define CURLE_HTTP_PORT_FAILED CURLE_INTERFACE_FAILED
567 #define CURLE_FTP_COULDNT_STOR_FILE CURLE_UPLOAD_FAILED
569 #define CURLE_FTP_PARTIAL_FILE CURLE_PARTIAL_FILE
570 #define CURLE_FTP_BAD_DOWNLOAD_RESUME CURLE_BAD_DOWNLOAD_RESUME
572 /* This was the error code 50 in 7.7.3 and a few earlier versions, this
573 is no longer used by libcurl but is instead #defined here only to not
574 make programs break */
575 #define CURLE_ALREADY_COMPLETE 99999
577 #endif /*!CURL_NO_OLDIES*/
579 /* This prototype applies to all conversion callbacks */
580 typedef CURLcode (*curl_conv_callback)(char *buffer, size_t length);
582 typedef CURLcode (*curl_ssl_ctx_callback)(CURL *curl, /* easy handle */
583 void *ssl_ctx, /* actually an
584 OpenSSL SSL_CTX */
585 void *userptr);
587 typedef enum {
588 CURLPROXY_HTTP = 0, /* added in 7.10, new in 7.19.4 default is to use
589 CONNECT HTTP/1.1 */
590 CURLPROXY_HTTP_1_0 = 1, /* added in 7.19.4, force to use CONNECT
591 HTTP/1.0 */
592 CURLPROXY_SOCKS4 = 4, /* support added in 7.15.2, enum existed already
593 in 7.10 */
594 CURLPROXY_SOCKS5 = 5, /* added in 7.10 */
595 CURLPROXY_SOCKS4A = 6, /* added in 7.18.0 */
596 CURLPROXY_SOCKS5_HOSTNAME = 7 /* Use the SOCKS5 protocol but pass along the
597 host name rather than the IP address. added
598 in 7.18.0 */
599 } curl_proxytype; /* this enum was added in 7.10 */
601 #define CURLAUTH_NONE 0 /* nothing */
602 #define CURLAUTH_BASIC (1<<0) /* Basic (default) */
603 #define CURLAUTH_DIGEST (1<<1) /* Digest */
604 #define CURLAUTH_GSSNEGOTIATE (1<<2) /* GSS-Negotiate */
605 #define CURLAUTH_NTLM (1<<3) /* NTLM */
606 #define CURLAUTH_DIGEST_IE (1<<4) /* Digest with IE flavour */
607 #define CURLAUTH_NTLM_WB (1<<5) /* NTLM delegating to winbind helper */
608 #define CURLAUTH_ONLY (1<<31) /* used together with a single other
609 type to force no auth or just that
610 single type */
611 #define CURLAUTH_ANY (~CURLAUTH_DIGEST_IE) /* all fine types set */
612 #define CURLAUTH_ANYSAFE (~(CURLAUTH_BASIC|CURLAUTH_DIGEST_IE))
614 #define CURLSSH_AUTH_ANY ~0 /* all types supported by the server */
615 #define CURLSSH_AUTH_NONE 0 /* none allowed, silly but complete */
616 #define CURLSSH_AUTH_PUBLICKEY (1<<0) /* public/private key files */
617 #define CURLSSH_AUTH_PASSWORD (1<<1) /* password */
618 #define CURLSSH_AUTH_HOST (1<<2) /* host key files */
619 #define CURLSSH_AUTH_KEYBOARD (1<<3) /* keyboard interactive */
620 #define CURLSSH_AUTH_DEFAULT CURLSSH_AUTH_ANY
622 #define CURLGSSAPI_DELEGATION_NONE 0 /* no delegation (default) */
623 #define CURLGSSAPI_DELEGATION_POLICY_FLAG (1<<0) /* if permitted by policy */
624 #define CURLGSSAPI_DELEGATION_FLAG (1<<1) /* delegate always */
626 #define CURL_ERROR_SIZE 256
628 struct curl_khkey {
629 const char *key; /* points to a zero-terminated string encoded with base64
630 if len is zero, otherwise to the "raw" data */
631 size_t len;
632 enum type {
633 CURLKHTYPE_UNKNOWN,
634 CURLKHTYPE_RSA1,
635 CURLKHTYPE_RSA,
636 CURLKHTYPE_DSS
637 } keytype;
640 /* this is the set of return values expected from the curl_sshkeycallback
641 callback */
642 enum curl_khstat {
643 CURLKHSTAT_FINE_ADD_TO_FILE,
644 CURLKHSTAT_FINE,
645 CURLKHSTAT_REJECT, /* reject the connection, return an error */
646 CURLKHSTAT_DEFER, /* do not accept it, but we can't answer right now so
647 this causes a CURLE_DEFER error but otherwise the
648 connection will be left intact etc */
649 CURLKHSTAT_LAST /* not for use, only a marker for last-in-list */
652 /* this is the set of status codes pass in to the callback */
653 enum curl_khmatch {
654 CURLKHMATCH_OK, /* match */
655 CURLKHMATCH_MISMATCH, /* host found, key mismatch! */
656 CURLKHMATCH_MISSING, /* no matching host/key found */
657 CURLKHMATCH_LAST /* not for use, only a marker for last-in-list */
660 typedef int
661 (*curl_sshkeycallback) (CURL *easy, /* easy handle */
662 const struct curl_khkey *knownkey, /* known */
663 const struct curl_khkey *foundkey, /* found */
664 enum curl_khmatch, /* libcurl's view on the keys */
665 void *clientp); /* custom pointer passed from app */
667 /* parameter for the CURLOPT_USE_SSL option */
668 typedef enum {
669 CURLUSESSL_NONE, /* do not attempt to use SSL */
670 CURLUSESSL_TRY, /* try using SSL, proceed anyway otherwise */
671 CURLUSESSL_CONTROL, /* SSL for the control connection or fail */
672 CURLUSESSL_ALL, /* SSL for all communication or fail */
673 CURLUSESSL_LAST /* not an option, never use */
674 } curl_usessl;
676 /* Definition of bits for the CURLOPT_SSL_OPTIONS argument: */
678 /* - ALLOW_BEAST tells libcurl to allow the BEAST SSL vulnerability in the
679 name of improving interoperability with older servers. Some SSL libraries
680 have introduced work-arounds for this flaw but those work-arounds sometimes
681 make the SSL communication fail. To regain functionality with those broken
682 servers, a user can this way allow the vulnerability back. */
683 #define CURLSSLOPT_ALLOW_BEAST (1<<0)
685 #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
686 the obsolete stuff removed! */
688 /* Backwards compatibility with older names */
689 /* These are scheduled to disappear by 2009 */
691 #define CURLFTPSSL_NONE CURLUSESSL_NONE
692 #define CURLFTPSSL_TRY CURLUSESSL_TRY
693 #define CURLFTPSSL_CONTROL CURLUSESSL_CONTROL
694 #define CURLFTPSSL_ALL CURLUSESSL_ALL
695 #define CURLFTPSSL_LAST CURLUSESSL_LAST
696 #define curl_ftpssl curl_usessl
697 #endif /*!CURL_NO_OLDIES*/
699 /* parameter for the CURLOPT_FTP_SSL_CCC option */
700 typedef enum {
701 CURLFTPSSL_CCC_NONE, /* do not send CCC */
702 CURLFTPSSL_CCC_PASSIVE, /* Let the server initiate the shutdown */
703 CURLFTPSSL_CCC_ACTIVE, /* Initiate the shutdown */
704 CURLFTPSSL_CCC_LAST /* not an option, never use */
705 } curl_ftpccc;
707 /* parameter for the CURLOPT_FTPSSLAUTH option */
708 typedef enum {
709 CURLFTPAUTH_DEFAULT, /* let libcurl decide */
710 CURLFTPAUTH_SSL, /* use "AUTH SSL" */
711 CURLFTPAUTH_TLS, /* use "AUTH TLS" */
712 CURLFTPAUTH_LAST /* not an option, never use */
713 } curl_ftpauth;
715 /* parameter for the CURLOPT_FTP_CREATE_MISSING_DIRS option */
716 typedef enum {
717 CURLFTP_CREATE_DIR_NONE, /* do NOT create missing dirs! */
718 CURLFTP_CREATE_DIR, /* (FTP/SFTP) if CWD fails, try MKD and then CWD
719 again if MKD succeeded, for SFTP this does
720 similar magic */
721 CURLFTP_CREATE_DIR_RETRY, /* (FTP only) if CWD fails, try MKD and then CWD
722 again even if MKD failed! */
723 CURLFTP_CREATE_DIR_LAST /* not an option, never use */
724 } curl_ftpcreatedir;
726 /* parameter for the CURLOPT_FTP_FILEMETHOD option */
727 typedef enum {
728 CURLFTPMETHOD_DEFAULT, /* let libcurl pick */
729 CURLFTPMETHOD_MULTICWD, /* single CWD operation for each path part */
730 CURLFTPMETHOD_NOCWD, /* no CWD at all */
731 CURLFTPMETHOD_SINGLECWD, /* one CWD to full dir, then work on file */
732 CURLFTPMETHOD_LAST /* not an option, never use */
733 } curl_ftpmethod;
735 /* CURLPROTO_ defines are for the CURLOPT_*PROTOCOLS options */
736 #define CURLPROTO_HTTP (1<<0)
737 #define CURLPROTO_HTTPS (1<<1)
738 #define CURLPROTO_FTP (1<<2)
739 #define CURLPROTO_FTPS (1<<3)
740 #define CURLPROTO_SCP (1<<4)
741 #define CURLPROTO_SFTP (1<<5)
742 #define CURLPROTO_TELNET (1<<6)
743 #define CURLPROTO_LDAP (1<<7)
744 #define CURLPROTO_LDAPS (1<<8)
745 #define CURLPROTO_DICT (1<<9)
746 #define CURLPROTO_FILE (1<<10)
747 #define CURLPROTO_TFTP (1<<11)
748 #define CURLPROTO_IMAP (1<<12)
749 #define CURLPROTO_IMAPS (1<<13)
750 #define CURLPROTO_POP3 (1<<14)
751 #define CURLPROTO_POP3S (1<<15)
752 #define CURLPROTO_SMTP (1<<16)
753 #define CURLPROTO_SMTPS (1<<17)
754 #define CURLPROTO_RTSP (1<<18)
755 #define CURLPROTO_RTMP (1<<19)
756 #define CURLPROTO_RTMPT (1<<20)
757 #define CURLPROTO_RTMPE (1<<21)
758 #define CURLPROTO_RTMPTE (1<<22)
759 #define CURLPROTO_RTMPS (1<<23)
760 #define CURLPROTO_RTMPTS (1<<24)
761 #define CURLPROTO_GOPHER (1<<25)
762 #define CURLPROTO_ALL (~0) /* enable everything */
764 /* long may be 32 or 64 bits, but we should never depend on anything else
765 but 32 */
766 #define CURLOPTTYPE_LONG 0
767 #define CURLOPTTYPE_OBJECTPOINT 10000
768 #define CURLOPTTYPE_FUNCTIONPOINT 20000
769 #define CURLOPTTYPE_OFF_T 30000
771 /* name is uppercase CURLOPT_<name>,
772 type is one of the defined CURLOPTTYPE_<type>
773 number is unique identifier */
774 #ifdef CINIT
775 #undef CINIT
776 #endif
778 #ifdef CURL_ISOCPP
779 #define CINIT(na,t,nu) CURLOPT_ ## na = CURLOPTTYPE_ ## t + nu
780 #else
781 /* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */
782 #define LONG CURLOPTTYPE_LONG
783 #define OBJECTPOINT CURLOPTTYPE_OBJECTPOINT
784 #define FUNCTIONPOINT CURLOPTTYPE_FUNCTIONPOINT
785 #define OFF_T CURLOPTTYPE_OFF_T
786 #define CINIT(name,type,number) CURLOPT_/**/name = type + number
787 #endif
790 * This macro-mania below setups the CURLOPT_[what] enum, to be used with
791 * curl_easy_setopt(). The first argument in the CINIT() macro is the [what]
792 * word.
795 typedef enum {
796 /* This is the FILE * or void * the regular output should be written to. */
797 CINIT(FILE, OBJECTPOINT, 1),
799 /* The full URL to get/put */
800 CINIT(URL, OBJECTPOINT, 2),
802 /* Port number to connect to, if other than default. */
803 CINIT(PORT, LONG, 3),
805 /* Name of proxy to use. */
806 CINIT(PROXY, OBJECTPOINT, 4),
808 /* "name:password" to use when fetching. */
809 CINIT(USERPWD, OBJECTPOINT, 5),
811 /* "name:password" to use with proxy. */
812 CINIT(PROXYUSERPWD, OBJECTPOINT, 6),
814 /* Range to get, specified as an ASCII string. */
815 CINIT(RANGE, OBJECTPOINT, 7),
817 /* not used */
819 /* Specified file stream to upload from (use as input): */
820 CINIT(INFILE, OBJECTPOINT, 9),
822 /* Buffer to receive error messages in, must be at least CURL_ERROR_SIZE
823 * bytes big. If this is not used, error messages go to stderr instead: */
824 CINIT(ERRORBUFFER, OBJECTPOINT, 10),
826 /* Function that will be called to store the output (instead of fwrite). The
827 * parameters will use fwrite() syntax, make sure to follow them. */
828 CINIT(WRITEFUNCTION, FUNCTIONPOINT, 11),
830 /* Function that will be called to read the input (instead of fread). The
831 * parameters will use fread() syntax, make sure to follow them. */
832 CINIT(READFUNCTION, FUNCTIONPOINT, 12),
834 /* Time-out the read operation after this amount of seconds */
835 CINIT(TIMEOUT, LONG, 13),
837 /* If the CURLOPT_INFILE is used, this can be used to inform libcurl about
838 * how large the file being sent really is. That allows better error
839 * checking and better verifies that the upload was successful. -1 means
840 * unknown size.
842 * For large file support, there is also a _LARGE version of the key
843 * which takes an off_t type, allowing platforms with larger off_t
844 * sizes to handle larger files. See below for INFILESIZE_LARGE.
846 CINIT(INFILESIZE, LONG, 14),
848 /* POST static input fields. */
849 CINIT(POSTFIELDS, OBJECTPOINT, 15),
851 /* Set the referrer page (needed by some CGIs) */
852 CINIT(REFERER, OBJECTPOINT, 16),
854 /* Set the FTP PORT string (interface name, named or numerical IP address)
855 Use i.e '-' to use default address. */
856 CINIT(FTPPORT, OBJECTPOINT, 17),
858 /* Set the User-Agent string (examined by some CGIs) */
859 CINIT(USERAGENT, OBJECTPOINT, 18),
861 /* If the download receives less than "low speed limit" bytes/second
862 * during "low speed time" seconds, the operations is aborted.
863 * You could i.e if you have a pretty high speed connection, abort if
864 * it is less than 2000 bytes/sec during 20 seconds.
867 /* Set the "low speed limit" */
868 CINIT(LOW_SPEED_LIMIT, LONG, 19),
870 /* Set the "low speed time" */
871 CINIT(LOW_SPEED_TIME, LONG, 20),
873 /* Set the continuation offset.
875 * Note there is also a _LARGE version of this key which uses
876 * off_t types, allowing for large file offsets on platforms which
877 * use larger-than-32-bit off_t's. Look below for RESUME_FROM_LARGE.
879 CINIT(RESUME_FROM, LONG, 21),
881 /* Set cookie in request: */
882 CINIT(COOKIE, OBJECTPOINT, 22),
884 /* This points to a linked list of headers, struct curl_slist kind */
885 CINIT(HTTPHEADER, OBJECTPOINT, 23),
887 /* This points to a linked list of post entries, struct curl_httppost */
888 CINIT(HTTPPOST, OBJECTPOINT, 24),
890 /* name of the file keeping your private SSL-certificate */
891 CINIT(SSLCERT, OBJECTPOINT, 25),
893 /* password for the SSL or SSH private key */
894 CINIT(KEYPASSWD, OBJECTPOINT, 26),
896 /* send TYPE parameter? */
897 CINIT(CRLF, LONG, 27),
899 /* send linked-list of QUOTE commands */
900 CINIT(QUOTE, OBJECTPOINT, 28),
902 /* send FILE * or void * to store headers to, if you use a callback it
903 is simply passed to the callback unmodified */
904 CINIT(WRITEHEADER, OBJECTPOINT, 29),
906 /* point to a file to read the initial cookies from, also enables
907 "cookie awareness" */
908 CINIT(COOKIEFILE, OBJECTPOINT, 31),
910 /* What version to specifically try to use.
911 See CURL_SSLVERSION defines below. */
912 CINIT(SSLVERSION, LONG, 32),
914 /* What kind of HTTP time condition to use, see defines */
915 CINIT(TIMECONDITION, LONG, 33),
917 /* Time to use with the above condition. Specified in number of seconds
918 since 1 Jan 1970 */
919 CINIT(TIMEVALUE, LONG, 34),
921 /* 35 = OBSOLETE */
923 /* Custom request, for customizing the get command like
924 HTTP: DELETE, TRACE and others
925 FTP: to use a different list command
927 CINIT(CUSTOMREQUEST, OBJECTPOINT, 36),
929 /* HTTP request, for odd commands like DELETE, TRACE and others */
930 CINIT(STDERR, OBJECTPOINT, 37),
932 /* 38 is not used */
934 /* send linked-list of post-transfer QUOTE commands */
935 CINIT(POSTQUOTE, OBJECTPOINT, 39),
937 CINIT(WRITEINFO, OBJECTPOINT, 40), /* DEPRECATED, do not use! */
939 CINIT(VERBOSE, LONG, 41), /* talk a lot */
940 CINIT(HEADER, LONG, 42), /* throw the header out too */
941 CINIT(NOPROGRESS, LONG, 43), /* shut off the progress meter */
942 CINIT(NOBODY, LONG, 44), /* use HEAD to get http document */
943 CINIT(FAILONERROR, LONG, 45), /* no output on http error codes >= 300 */
944 CINIT(UPLOAD, LONG, 46), /* this is an upload */
945 CINIT(POST, LONG, 47), /* HTTP POST method */
946 CINIT(DIRLISTONLY, LONG, 48), /* bare names when listing directories */
948 CINIT(APPEND, LONG, 50), /* Append instead of overwrite on upload! */
950 /* Specify whether to read the user+password from the .netrc or the URL.
951 * This must be one of the CURL_NETRC_* enums below. */
952 CINIT(NETRC, LONG, 51),
954 CINIT(FOLLOWLOCATION, LONG, 52), /* use Location: Luke! */
956 CINIT(TRANSFERTEXT, LONG, 53), /* transfer data in text/ASCII format */
957 CINIT(PUT, LONG, 54), /* HTTP PUT */
959 /* 55 = OBSOLETE */
961 /* Function that will be called instead of the internal progress display
962 * function. This function should be defined as the curl_progress_callback
963 * prototype defines. */
964 CINIT(PROGRESSFUNCTION, FUNCTIONPOINT, 56),
966 /* Data passed to the progress callback */
967 CINIT(PROGRESSDATA, OBJECTPOINT, 57),
969 /* We want the referrer field set automatically when following locations */
970 CINIT(AUTOREFERER, LONG, 58),
972 /* Port of the proxy, can be set in the proxy string as well with:
973 "[host]:[port]" */
974 CINIT(PROXYPORT, LONG, 59),
976 /* size of the POST input data, if strlen() is not good to use */
977 CINIT(POSTFIELDSIZE, LONG, 60),
979 /* tunnel non-http operations through a HTTP proxy */
980 CINIT(HTTPPROXYTUNNEL, LONG, 61),
982 /* Set the interface string to use as outgoing network interface */
983 CINIT(INTERFACE, OBJECTPOINT, 62),
985 /* Set the krb4/5 security level, this also enables krb4/5 awareness. This
986 * is a string, 'clear', 'safe', 'confidential' or 'private'. If the string
987 * is set but doesn't match one of these, 'private' will be used. */
988 CINIT(KRBLEVEL, OBJECTPOINT, 63),
990 /* Set if we should verify the peer in ssl handshake, set 1 to verify. */
991 CINIT(SSL_VERIFYPEER, LONG, 64),
993 /* The CApath or CAfile used to validate the peer certificate
994 this option is used only if SSL_VERIFYPEER is true */
995 CINIT(CAINFO, OBJECTPOINT, 65),
997 /* 66 = OBSOLETE */
998 /* 67 = OBSOLETE */
1000 /* Maximum number of http redirects to follow */
1001 CINIT(MAXREDIRS, LONG, 68),
1003 /* Pass a long set to 1 to get the date of the requested document (if
1004 possible)! Pass a zero to shut it off. */
1005 CINIT(FILETIME, LONG, 69),
1007 /* This points to a linked list of telnet options */
1008 CINIT(TELNETOPTIONS, OBJECTPOINT, 70),
1010 /* Max amount of cached alive connections */
1011 CINIT(MAXCONNECTS, LONG, 71),
1013 CINIT(CLOSEPOLICY, LONG, 72), /* DEPRECATED, do not use! */
1015 /* 73 = OBSOLETE */
1017 /* Set to explicitly use a new connection for the upcoming transfer.
1018 Do not use this unless you're absolutely sure of this, as it makes the
1019 operation slower and is less friendly for the network. */
1020 CINIT(FRESH_CONNECT, LONG, 74),
1022 /* Set to explicitly forbid the upcoming transfer's connection to be re-used
1023 when done. Do not use this unless you're absolutely sure of this, as it
1024 makes the operation slower and is less friendly for the network. */
1025 CINIT(FORBID_REUSE, LONG, 75),
1027 /* Set to a file name that contains random data for libcurl to use to
1028 seed the random engine when doing SSL connects. */
1029 CINIT(RANDOM_FILE, OBJECTPOINT, 76),
1031 /* Set to the Entropy Gathering Daemon socket pathname */
1032 CINIT(EGDSOCKET, OBJECTPOINT, 77),
1034 /* Time-out connect operations after this amount of seconds, if connects
1035 are OK within this time, then fine... This only aborts the connect
1036 phase. [Only works on unix-style/SIGALRM operating systems] */
1037 CINIT(CONNECTTIMEOUT, LONG, 78),
1039 /* Function that will be called to store headers (instead of fwrite). The
1040 * parameters will use fwrite() syntax, make sure to follow them. */
1041 CINIT(HEADERFUNCTION, FUNCTIONPOINT, 79),
1043 /* Set this to force the HTTP request to get back to GET. Only really usable
1044 if POST, PUT or a custom request have been used first.
1046 CINIT(HTTPGET, LONG, 80),
1048 /* Set if we should verify the Common name from the peer certificate in ssl
1049 * handshake, set 1 to check existence, 2 to ensure that it matches the
1050 * provided hostname. */
1051 CINIT(SSL_VERIFYHOST, LONG, 81),
1053 /* Specify which file name to write all known cookies in after completed
1054 operation. Set file name to "-" (dash) to make it go to stdout. */
1055 CINIT(COOKIEJAR, OBJECTPOINT, 82),
1057 /* Specify which SSL ciphers to use */
1058 CINIT(SSL_CIPHER_LIST, OBJECTPOINT, 83),
1060 /* Specify which HTTP version to use! This must be set to one of the
1061 CURL_HTTP_VERSION* enums set below. */
1062 CINIT(HTTP_VERSION, LONG, 84),
1064 /* Specifically switch on or off the FTP engine's use of the EPSV command. By
1065 default, that one will always be attempted before the more traditional
1066 PASV command. */
1067 CINIT(FTP_USE_EPSV, LONG, 85),
1069 /* type of the file keeping your SSL-certificate ("DER", "PEM", "ENG") */
1070 CINIT(SSLCERTTYPE, OBJECTPOINT, 86),
1072 /* name of the file keeping your private SSL-key */
1073 CINIT(SSLKEY, OBJECTPOINT, 87),
1075 /* type of the file keeping your private SSL-key ("DER", "PEM", "ENG") */
1076 CINIT(SSLKEYTYPE, OBJECTPOINT, 88),
1078 /* crypto engine for the SSL-sub system */
1079 CINIT(SSLENGINE, OBJECTPOINT, 89),
1081 /* set the crypto engine for the SSL-sub system as default
1082 the param has no meaning...
1084 CINIT(SSLENGINE_DEFAULT, LONG, 90),
1086 /* Non-zero value means to use the global dns cache */
1087 CINIT(DNS_USE_GLOBAL_CACHE, LONG, 91), /* DEPRECATED, do not use! */
1089 /* DNS cache timeout */
1090 CINIT(DNS_CACHE_TIMEOUT, LONG, 92),
1092 /* send linked-list of pre-transfer QUOTE commands */
1093 CINIT(PREQUOTE, OBJECTPOINT, 93),
1095 /* set the debug function */
1096 CINIT(DEBUGFUNCTION, FUNCTIONPOINT, 94),
1098 /* set the data for the debug function */
1099 CINIT(DEBUGDATA, OBJECTPOINT, 95),
1101 /* mark this as start of a cookie session */
1102 CINIT(COOKIESESSION, LONG, 96),
1104 /* The CApath directory used to validate the peer certificate
1105 this option is used only if SSL_VERIFYPEER is true */
1106 CINIT(CAPATH, OBJECTPOINT, 97),
1108 /* Instruct libcurl to use a smaller receive buffer */
1109 CINIT(BUFFERSIZE, LONG, 98),
1111 /* Instruct libcurl to not use any signal/alarm handlers, even when using
1112 timeouts. This option is useful for multi-threaded applications.
1113 See libcurl-the-guide for more background information. */
1114 CINIT(NOSIGNAL, LONG, 99),
1116 /* Provide a CURLShare for mutexing non-ts data */
1117 CINIT(SHARE, OBJECTPOINT, 100),
1119 /* indicates type of proxy. accepted values are CURLPROXY_HTTP (default),
1120 CURLPROXY_SOCKS4, CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5. */
1121 CINIT(PROXYTYPE, LONG, 101),
1123 /* Set the Accept-Encoding string. Use this to tell a server you would like
1124 the response to be compressed. Before 7.21.6, this was known as
1125 CURLOPT_ENCODING */
1126 CINIT(ACCEPT_ENCODING, OBJECTPOINT, 102),
1128 /* Set pointer to private data */
1129 CINIT(PRIVATE, OBJECTPOINT, 103),
1131 /* Set aliases for HTTP 200 in the HTTP Response header */
1132 CINIT(HTTP200ALIASES, OBJECTPOINT, 104),
1134 /* Continue to send authentication (user+password) when following locations,
1135 even when hostname changed. This can potentially send off the name
1136 and password to whatever host the server decides. */
1137 CINIT(UNRESTRICTED_AUTH, LONG, 105),
1139 /* Specifically switch on or off the FTP engine's use of the EPRT command (
1140 it also disables the LPRT attempt). By default, those ones will always be
1141 attempted before the good old traditional PORT command. */
1142 CINIT(FTP_USE_EPRT, LONG, 106),
1144 /* Set this to a bitmask value to enable the particular authentications
1145 methods you like. Use this in combination with CURLOPT_USERPWD.
1146 Note that setting multiple bits may cause extra network round-trips. */
1147 CINIT(HTTPAUTH, LONG, 107),
1149 /* Set the ssl context callback function, currently only for OpenSSL ssl_ctx
1150 in second argument. The function must be matching the
1151 curl_ssl_ctx_callback proto. */
1152 CINIT(SSL_CTX_FUNCTION, FUNCTIONPOINT, 108),
1154 /* Set the userdata for the ssl context callback function's third
1155 argument */
1156 CINIT(SSL_CTX_DATA, OBJECTPOINT, 109),
1158 /* FTP Option that causes missing dirs to be created on the remote server.
1159 In 7.19.4 we introduced the convenience enums for this option using the
1160 CURLFTP_CREATE_DIR prefix.
1162 CINIT(FTP_CREATE_MISSING_DIRS, LONG, 110),
1164 /* Set this to a bitmask value to enable the particular authentications
1165 methods you like. Use this in combination with CURLOPT_PROXYUSERPWD.
1166 Note that setting multiple bits may cause extra network round-trips. */
1167 CINIT(PROXYAUTH, LONG, 111),
1169 /* FTP option that changes the timeout, in seconds, associated with
1170 getting a response. This is different from transfer timeout time and
1171 essentially places a demand on the FTP server to acknowledge commands
1172 in a timely manner. */
1173 CINIT(FTP_RESPONSE_TIMEOUT, LONG, 112),
1174 #define CURLOPT_SERVER_RESPONSE_TIMEOUT CURLOPT_FTP_RESPONSE_TIMEOUT
1176 /* Set this option to one of the CURL_IPRESOLVE_* defines (see below) to
1177 tell libcurl to resolve names to those IP versions only. This only has
1178 affect on systems with support for more than one, i.e IPv4 _and_ IPv6. */
1179 CINIT(IPRESOLVE, LONG, 113),
1181 /* Set this option to limit the size of a file that will be downloaded from
1182 an HTTP or FTP server.
1184 Note there is also _LARGE version which adds large file support for
1185 platforms which have larger off_t sizes. See MAXFILESIZE_LARGE below. */
1186 CINIT(MAXFILESIZE, LONG, 114),
1188 /* See the comment for INFILESIZE above, but in short, specifies
1189 * the size of the file being uploaded. -1 means unknown.
1191 CINIT(INFILESIZE_LARGE, OFF_T, 115),
1193 /* Sets the continuation offset. There is also a LONG version of this;
1194 * look above for RESUME_FROM.
1196 CINIT(RESUME_FROM_LARGE, OFF_T, 116),
1198 /* Sets the maximum size of data that will be downloaded from
1199 * an HTTP or FTP server. See MAXFILESIZE above for the LONG version.
1201 CINIT(MAXFILESIZE_LARGE, OFF_T, 117),
1203 /* Set this option to the file name of your .netrc file you want libcurl
1204 to parse (using the CURLOPT_NETRC option). If not set, libcurl will do
1205 a poor attempt to find the user's home directory and check for a .netrc
1206 file in there. */
1207 CINIT(NETRC_FILE, OBJECTPOINT, 118),
1209 /* Enable SSL/TLS for FTP, pick one of:
1210 CURLFTPSSL_TRY - try using SSL, proceed anyway otherwise
1211 CURLFTPSSL_CONTROL - SSL for the control connection or fail
1212 CURLFTPSSL_ALL - SSL for all communication or fail
1214 CINIT(USE_SSL, LONG, 119),
1216 /* The _LARGE version of the standard POSTFIELDSIZE option */
1217 CINIT(POSTFIELDSIZE_LARGE, OFF_T, 120),
1219 /* Enable/disable the TCP Nagle algorithm */
1220 CINIT(TCP_NODELAY, LONG, 121),
1222 /* 122 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
1223 /* 123 OBSOLETE. Gone in 7.16.0 */
1224 /* 124 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
1225 /* 125 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
1226 /* 126 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
1227 /* 127 OBSOLETE. Gone in 7.16.0 */
1228 /* 128 OBSOLETE. Gone in 7.16.0 */
1230 /* When FTP over SSL/TLS is selected (with CURLOPT_USE_SSL), this option
1231 can be used to change libcurl's default action which is to first try
1232 "AUTH SSL" and then "AUTH TLS" in this order, and proceed when a OK
1233 response has been received.
1235 Available parameters are:
1236 CURLFTPAUTH_DEFAULT - let libcurl decide
1237 CURLFTPAUTH_SSL - try "AUTH SSL" first, then TLS
1238 CURLFTPAUTH_TLS - try "AUTH TLS" first, then SSL
1240 CINIT(FTPSSLAUTH, LONG, 129),
1242 CINIT(IOCTLFUNCTION, FUNCTIONPOINT, 130),
1243 CINIT(IOCTLDATA, OBJECTPOINT, 131),
1245 /* 132 OBSOLETE. Gone in 7.16.0 */
1246 /* 133 OBSOLETE. Gone in 7.16.0 */
1248 /* zero terminated string for pass on to the FTP server when asked for
1249 "account" info */
1250 CINIT(FTP_ACCOUNT, OBJECTPOINT, 134),
1252 /* feed cookies into cookie engine */
1253 CINIT(COOKIELIST, OBJECTPOINT, 135),
1255 /* ignore Content-Length */
1256 CINIT(IGNORE_CONTENT_LENGTH, LONG, 136),
1258 /* Set to non-zero to skip the IP address received in a 227 PASV FTP server
1259 response. Typically used for FTP-SSL purposes but is not restricted to
1260 that. libcurl will then instead use the same IP address it used for the
1261 control connection. */
1262 CINIT(FTP_SKIP_PASV_IP, LONG, 137),
1264 /* Select "file method" to use when doing FTP, see the curl_ftpmethod
1265 above. */
1266 CINIT(FTP_FILEMETHOD, LONG, 138),
1268 /* Local port number to bind the socket to */
1269 CINIT(LOCALPORT, LONG, 139),
1271 /* Number of ports to try, including the first one set with LOCALPORT.
1272 Thus, setting it to 1 will make no additional attempts but the first.
1274 CINIT(LOCALPORTRANGE, LONG, 140),
1276 /* no transfer, set up connection and let application use the socket by
1277 extracting it with CURLINFO_LASTSOCKET */
1278 CINIT(CONNECT_ONLY, LONG, 141),
1280 /* Function that will be called to convert from the
1281 network encoding (instead of using the iconv calls in libcurl) */
1282 CINIT(CONV_FROM_NETWORK_FUNCTION, FUNCTIONPOINT, 142),
1284 /* Function that will be called to convert to the
1285 network encoding (instead of using the iconv calls in libcurl) */
1286 CINIT(CONV_TO_NETWORK_FUNCTION, FUNCTIONPOINT, 143),
1288 /* Function that will be called to convert from UTF8
1289 (instead of using the iconv calls in libcurl)
1290 Note that this is used only for SSL certificate processing */
1291 CINIT(CONV_FROM_UTF8_FUNCTION, FUNCTIONPOINT, 144),
1293 /* if the connection proceeds too quickly then need to slow it down */
1294 /* limit-rate: maximum number of bytes per second to send or receive */
1295 CINIT(MAX_SEND_SPEED_LARGE, OFF_T, 145),
1296 CINIT(MAX_RECV_SPEED_LARGE, OFF_T, 146),
1298 /* Pointer to command string to send if USER/PASS fails. */
1299 CINIT(FTP_ALTERNATIVE_TO_USER, OBJECTPOINT, 147),
1301 /* callback function for setting socket options */
1302 CINIT(SOCKOPTFUNCTION, FUNCTIONPOINT, 148),
1303 CINIT(SOCKOPTDATA, OBJECTPOINT, 149),
1305 /* set to 0 to disable session ID re-use for this transfer, default is
1306 enabled (== 1) */
1307 CINIT(SSL_SESSIONID_CACHE, LONG, 150),
1309 /* allowed SSH authentication methods */
1310 CINIT(SSH_AUTH_TYPES, LONG, 151),
1312 /* Used by scp/sftp to do public/private key authentication */
1313 CINIT(SSH_PUBLIC_KEYFILE, OBJECTPOINT, 152),
1314 CINIT(SSH_PRIVATE_KEYFILE, OBJECTPOINT, 153),
1316 /* Send CCC (Clear Command Channel) after authentication */
1317 CINIT(FTP_SSL_CCC, LONG, 154),
1319 /* Same as TIMEOUT and CONNECTTIMEOUT, but with ms resolution */
1320 CINIT(TIMEOUT_MS, LONG, 155),
1321 CINIT(CONNECTTIMEOUT_MS, LONG, 156),
1323 /* set to zero to disable the libcurl's decoding and thus pass the raw body
1324 data to the application even when it is encoded/compressed */
1325 CINIT(HTTP_TRANSFER_DECODING, LONG, 157),
1326 CINIT(HTTP_CONTENT_DECODING, LONG, 158),
1328 /* Permission used when creating new files and directories on the remote
1329 server for protocols that support it, SFTP/SCP/FILE */
1330 CINIT(NEW_FILE_PERMS, LONG, 159),
1331 CINIT(NEW_DIRECTORY_PERMS, LONG, 160),
1333 /* Set the behaviour of POST when redirecting. Values must be set to one
1334 of CURL_REDIR* defines below. This used to be called CURLOPT_POST301 */
1335 CINIT(POSTREDIR, LONG, 161),
1337 /* used by scp/sftp to verify the host's public key */
1338 CINIT(SSH_HOST_PUBLIC_KEY_MD5, OBJECTPOINT, 162),
1340 /* Callback function for opening socket (instead of socket(2)). Optionally,
1341 callback is able change the address or refuse to connect returning
1342 CURL_SOCKET_BAD. The callback should have type
1343 curl_opensocket_callback */
1344 CINIT(OPENSOCKETFUNCTION, FUNCTIONPOINT, 163),
1345 CINIT(OPENSOCKETDATA, OBJECTPOINT, 164),
1347 /* POST volatile input fields. */
1348 CINIT(COPYPOSTFIELDS, OBJECTPOINT, 165),
1350 /* set transfer mode (;type=<a|i>) when doing FTP via an HTTP proxy */
1351 CINIT(PROXY_TRANSFER_MODE, LONG, 166),
1353 /* Callback function for seeking in the input stream */
1354 CINIT(SEEKFUNCTION, FUNCTIONPOINT, 167),
1355 CINIT(SEEKDATA, OBJECTPOINT, 168),
1357 /* CRL file */
1358 CINIT(CRLFILE, OBJECTPOINT, 169),
1360 /* Issuer certificate */
1361 CINIT(ISSUERCERT, OBJECTPOINT, 170),
1363 /* (IPv6) Address scope */
1364 CINIT(ADDRESS_SCOPE, LONG, 171),
1366 /* Collect certificate chain info and allow it to get retrievable with
1367 CURLINFO_CERTINFO after the transfer is complete. (Unfortunately) only
1368 working with OpenSSL-powered builds. */
1369 CINIT(CERTINFO, LONG, 172),
1371 /* "name" and "pwd" to use when fetching. */
1372 CINIT(USERNAME, OBJECTPOINT, 173),
1373 CINIT(PASSWORD, OBJECTPOINT, 174),
1375 /* "name" and "pwd" to use with Proxy when fetching. */
1376 CINIT(PROXYUSERNAME, OBJECTPOINT, 175),
1377 CINIT(PROXYPASSWORD, OBJECTPOINT, 176),
1379 /* Comma separated list of hostnames defining no-proxy zones. These should
1380 match both hostnames directly, and hostnames within a domain. For
1381 example, local.com will match local.com and www.local.com, but NOT
1382 notlocal.com or www.notlocal.com. For compatibility with other
1383 implementations of this, .local.com will be considered to be the same as
1384 local.com. A single * is the only valid wildcard, and effectively
1385 disables the use of proxy. */
1386 CINIT(NOPROXY, OBJECTPOINT, 177),
1388 /* block size for TFTP transfers */
1389 CINIT(TFTP_BLKSIZE, LONG, 178),
1391 /* Socks Service */
1392 CINIT(SOCKS5_GSSAPI_SERVICE, OBJECTPOINT, 179),
1394 /* Socks Service */
1395 CINIT(SOCKS5_GSSAPI_NEC, LONG, 180),
1397 /* set the bitmask for the protocols that are allowed to be used for the
1398 transfer, which thus helps the app which takes URLs from users or other
1399 external inputs and want to restrict what protocol(s) to deal
1400 with. Defaults to CURLPROTO_ALL. */
1401 CINIT(PROTOCOLS, LONG, 181),
1403 /* set the bitmask for the protocols that libcurl is allowed to follow to,
1404 as a subset of the CURLOPT_PROTOCOLS ones. That means the protocol needs
1405 to be set in both bitmasks to be allowed to get redirected to. Defaults
1406 to all protocols except FILE and SCP. */
1407 CINIT(REDIR_PROTOCOLS, LONG, 182),
1409 /* set the SSH knownhost file name to use */
1410 CINIT(SSH_KNOWNHOSTS, OBJECTPOINT, 183),
1412 /* set the SSH host key callback, must point to a curl_sshkeycallback
1413 function */
1414 CINIT(SSH_KEYFUNCTION, FUNCTIONPOINT, 184),
1416 /* set the SSH host key callback custom pointer */
1417 CINIT(SSH_KEYDATA, OBJECTPOINT, 185),
1419 /* set the SMTP mail originator */
1420 CINIT(MAIL_FROM, OBJECTPOINT, 186),
1422 /* set the SMTP mail receiver(s) */
1423 CINIT(MAIL_RCPT, OBJECTPOINT, 187),
1425 /* FTP: send PRET before PASV */
1426 CINIT(FTP_USE_PRET, LONG, 188),
1428 /* RTSP request method (OPTIONS, SETUP, PLAY, etc...) */
1429 CINIT(RTSP_REQUEST, LONG, 189),
1431 /* The RTSP session identifier */
1432 CINIT(RTSP_SESSION_ID, OBJECTPOINT, 190),
1434 /* The RTSP stream URI */
1435 CINIT(RTSP_STREAM_URI, OBJECTPOINT, 191),
1437 /* The Transport: header to use in RTSP requests */
1438 CINIT(RTSP_TRANSPORT, OBJECTPOINT, 192),
1440 /* Manually initialize the client RTSP CSeq for this handle */
1441 CINIT(RTSP_CLIENT_CSEQ, LONG, 193),
1443 /* Manually initialize the server RTSP CSeq for this handle */
1444 CINIT(RTSP_SERVER_CSEQ, LONG, 194),
1446 /* The stream to pass to INTERLEAVEFUNCTION. */
1447 CINIT(INTERLEAVEDATA, OBJECTPOINT, 195),
1449 /* Let the application define a custom write method for RTP data */
1450 CINIT(INTERLEAVEFUNCTION, FUNCTIONPOINT, 196),
1452 /* Turn on wildcard matching */
1453 CINIT(WILDCARDMATCH, LONG, 197),
1455 /* Directory matching callback called before downloading of an
1456 individual file (chunk) started */
1457 CINIT(CHUNK_BGN_FUNCTION, FUNCTIONPOINT, 198),
1459 /* Directory matching callback called after the file (chunk)
1460 was downloaded, or skipped */
1461 CINIT(CHUNK_END_FUNCTION, FUNCTIONPOINT, 199),
1463 /* Change match (fnmatch-like) callback for wildcard matching */
1464 CINIT(FNMATCH_FUNCTION, FUNCTIONPOINT, 200),
1466 /* Let the application define custom chunk data pointer */
1467 CINIT(CHUNK_DATA, OBJECTPOINT, 201),
1469 /* FNMATCH_FUNCTION user pointer */
1470 CINIT(FNMATCH_DATA, OBJECTPOINT, 202),
1472 /* send linked-list of name:port:address sets */
1473 CINIT(RESOLVE, OBJECTPOINT, 203),
1475 /* Set a username for authenticated TLS */
1476 CINIT(TLSAUTH_USERNAME, OBJECTPOINT, 204),
1478 /* Set a password for authenticated TLS */
1479 CINIT(TLSAUTH_PASSWORD, OBJECTPOINT, 205),
1481 /* Set authentication type for authenticated TLS */
1482 CINIT(TLSAUTH_TYPE, OBJECTPOINT, 206),
1484 /* Set to 1 to enable the "TE:" header in HTTP requests to ask for
1485 compressed transfer-encoded responses. Set to 0 to disable the use of TE:
1486 in outgoing requests. The current default is 0, but it might change in a
1487 future libcurl release.
1489 libcurl will ask for the compressed methods it knows of, and if that
1490 isn't any, it will not ask for transfer-encoding at all even if this
1491 option is set to 1.
1494 CINIT(TRANSFER_ENCODING, LONG, 207),
1496 /* Callback function for closing socket (instead of close(2)). The callback
1497 should have type curl_closesocket_callback */
1498 CINIT(CLOSESOCKETFUNCTION, FUNCTIONPOINT, 208),
1499 CINIT(CLOSESOCKETDATA, OBJECTPOINT, 209),
1501 /* allow GSSAPI credential delegation */
1502 CINIT(GSSAPI_DELEGATION, LONG, 210),
1504 /* Set the name servers to use for DNS resolution */
1505 CINIT(DNS_SERVERS, OBJECTPOINT, 211),
1507 /* Time-out accept operations (currently for FTP only) after this amount
1508 of miliseconds. */
1509 CINIT(ACCEPTTIMEOUT_MS, LONG, 212),
1511 /* Set TCP keepalive */
1512 CINIT(TCP_KEEPALIVE, LONG, 213),
1514 /* non-universal keepalive knobs (Linux, AIX, HP-UX, more) */
1515 CINIT(TCP_KEEPIDLE, LONG, 214),
1516 CINIT(TCP_KEEPINTVL, LONG, 215),
1518 /* Enable/disable specific SSL features with a bitmask, see CURLSSLOPT_* */
1519 CINIT(SSL_OPTIONS, LONG, 216),
1521 /* set the SMTP auth originator */
1522 CINIT(MAIL_AUTH, OBJECTPOINT, 217),
1524 CURLOPT_LASTENTRY /* the last unused */
1525 } CURLoption;
1527 #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
1528 the obsolete stuff removed! */
1530 /* Backwards compatibility with older names */
1531 /* These are scheduled to disappear by 2011 */
1533 /* This was added in version 7.19.1 */
1534 #define CURLOPT_POST301 CURLOPT_POSTREDIR
1536 /* These are scheduled to disappear by 2009 */
1538 /* The following were added in 7.17.0 */
1539 #define CURLOPT_SSLKEYPASSWD CURLOPT_KEYPASSWD
1540 #define CURLOPT_FTPAPPEND CURLOPT_APPEND
1541 #define CURLOPT_FTPLISTONLY CURLOPT_DIRLISTONLY
1542 #define CURLOPT_FTP_SSL CURLOPT_USE_SSL
1544 /* The following were added earlier */
1546 #define CURLOPT_SSLCERTPASSWD CURLOPT_KEYPASSWD
1547 #define CURLOPT_KRB4LEVEL CURLOPT_KRBLEVEL
1549 #else
1550 /* This is set if CURL_NO_OLDIES is defined at compile-time */
1551 #undef CURLOPT_DNS_USE_GLOBAL_CACHE /* soon obsolete */
1552 #endif
1555 /* Below here follows defines for the CURLOPT_IPRESOLVE option. If a host
1556 name resolves addresses using more than one IP protocol version, this
1557 option might be handy to force libcurl to use a specific IP version. */
1558 #define CURL_IPRESOLVE_WHATEVER 0 /* default, resolves addresses to all IP
1559 versions that your system allows */
1560 #define CURL_IPRESOLVE_V4 1 /* resolve to ipv4 addresses */
1561 #define CURL_IPRESOLVE_V6 2 /* resolve to ipv6 addresses */
1563 /* three convenient "aliases" that follow the name scheme better */
1564 #define CURLOPT_WRITEDATA CURLOPT_FILE
1565 #define CURLOPT_READDATA CURLOPT_INFILE
1566 #define CURLOPT_HEADERDATA CURLOPT_WRITEHEADER
1567 #define CURLOPT_RTSPHEADER CURLOPT_HTTPHEADER
1569 /* These enums are for use with the CURLOPT_HTTP_VERSION option. */
1570 enum {
1571 CURL_HTTP_VERSION_NONE, /* setting this means we don't care, and that we'd
1572 like the library to choose the best possible
1573 for us! */
1574 CURL_HTTP_VERSION_1_0, /* please use HTTP 1.0 in the request */
1575 CURL_HTTP_VERSION_1_1, /* please use HTTP 1.1 in the request */
1577 CURL_HTTP_VERSION_LAST /* *ILLEGAL* http version */
1581 * Public API enums for RTSP requests
1583 enum {
1584 CURL_RTSPREQ_NONE, /* first in list */
1585 CURL_RTSPREQ_OPTIONS,
1586 CURL_RTSPREQ_DESCRIBE,
1587 CURL_RTSPREQ_ANNOUNCE,
1588 CURL_RTSPREQ_SETUP,
1589 CURL_RTSPREQ_PLAY,
1590 CURL_RTSPREQ_PAUSE,
1591 CURL_RTSPREQ_TEARDOWN,
1592 CURL_RTSPREQ_GET_PARAMETER,
1593 CURL_RTSPREQ_SET_PARAMETER,
1594 CURL_RTSPREQ_RECORD,
1595 CURL_RTSPREQ_RECEIVE,
1596 CURL_RTSPREQ_LAST /* last in list */
1599 /* These enums are for use with the CURLOPT_NETRC option. */
1600 enum CURL_NETRC_OPTION {
1601 CURL_NETRC_IGNORED, /* The .netrc will never be read.
1602 * This is the default. */
1603 CURL_NETRC_OPTIONAL, /* A user:password in the URL will be preferred
1604 * to one in the .netrc. */
1605 CURL_NETRC_REQUIRED, /* A user:password in the URL will be ignored.
1606 * Unless one is set programmatically, the .netrc
1607 * will be queried. */
1608 CURL_NETRC_LAST
1611 enum {
1612 CURL_SSLVERSION_DEFAULT,
1613 CURL_SSLVERSION_TLSv1,
1614 CURL_SSLVERSION_SSLv2,
1615 CURL_SSLVERSION_SSLv3,
1617 CURL_SSLVERSION_LAST /* never use, keep last */
1620 enum CURL_TLSAUTH {
1621 CURL_TLSAUTH_NONE,
1622 CURL_TLSAUTH_SRP,
1623 CURL_TLSAUTH_LAST /* never use, keep last */
1626 /* symbols to use with CURLOPT_POSTREDIR.
1627 CURL_REDIR_POST_301 and CURL_REDIR_POST_302 can be bitwise ORed so that
1628 CURL_REDIR_POST_301 | CURL_REDIR_POST_302 == CURL_REDIR_POST_ALL */
1630 #define CURL_REDIR_GET_ALL 0
1631 #define CURL_REDIR_POST_301 1
1632 #define CURL_REDIR_POST_302 2
1633 #define CURL_REDIR_POST_ALL (CURL_REDIR_POST_301|CURL_REDIR_POST_302)
1635 typedef enum {
1636 CURL_TIMECOND_NONE,
1638 CURL_TIMECOND_IFMODSINCE,
1639 CURL_TIMECOND_IFUNMODSINCE,
1640 CURL_TIMECOND_LASTMOD,
1642 CURL_TIMECOND_LAST
1643 } curl_TimeCond;
1646 /* curl_strequal() and curl_strnequal() are subject for removal in a future
1647 libcurl, see lib/README.curlx for details */
1648 CURL_EXTERN int (curl_strequal)(const char *s1, const char *s2);
1649 CURL_EXTERN int (curl_strnequal)(const char *s1, const char *s2, size_t n);
1651 /* name is uppercase CURLFORM_<name> */
1652 #ifdef CFINIT
1653 #undef CFINIT
1654 #endif
1656 #ifdef CURL_ISOCPP
1657 #define CFINIT(name) CURLFORM_ ## name
1658 #else
1659 /* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */
1660 #define CFINIT(name) CURLFORM_/**/name
1661 #endif
1663 typedef enum {
1664 CFINIT(NOTHING), /********* the first one is unused ************/
1666 /* */
1667 CFINIT(COPYNAME),
1668 CFINIT(PTRNAME),
1669 CFINIT(NAMELENGTH),
1670 CFINIT(COPYCONTENTS),
1671 CFINIT(PTRCONTENTS),
1672 CFINIT(CONTENTSLENGTH),
1673 CFINIT(FILECONTENT),
1674 CFINIT(ARRAY),
1675 CFINIT(OBSOLETE),
1676 CFINIT(FILE),
1678 CFINIT(BUFFER),
1679 CFINIT(BUFFERPTR),
1680 CFINIT(BUFFERLENGTH),
1682 CFINIT(CONTENTTYPE),
1683 CFINIT(CONTENTHEADER),
1684 CFINIT(FILENAME),
1685 CFINIT(END),
1686 CFINIT(OBSOLETE2),
1688 CFINIT(STREAM),
1690 CURLFORM_LASTENTRY /* the last unused */
1691 } CURLformoption;
1693 #undef CFINIT /* done */
1695 /* structure to be used as parameter for CURLFORM_ARRAY */
1696 struct curl_forms {
1697 CURLformoption option;
1698 const char *value;
1701 /* use this for multipart formpost building */
1702 /* Returns code for curl_formadd()
1704 * Returns:
1705 * CURL_FORMADD_OK on success
1706 * CURL_FORMADD_MEMORY if the FormInfo allocation fails
1707 * CURL_FORMADD_OPTION_TWICE if one option is given twice for one Form
1708 * CURL_FORMADD_NULL if a null pointer was given for a char
1709 * CURL_FORMADD_MEMORY if the allocation of a FormInfo struct failed
1710 * CURL_FORMADD_UNKNOWN_OPTION if an unknown option was used
1711 * CURL_FORMADD_INCOMPLETE if the some FormInfo is not complete (or error)
1712 * CURL_FORMADD_MEMORY if a curl_httppost struct cannot be allocated
1713 * CURL_FORMADD_MEMORY if some allocation for string copying failed.
1714 * CURL_FORMADD_ILLEGAL_ARRAY if an illegal option is used in an array
1716 ***************************************************************************/
1717 typedef enum {
1718 CURL_FORMADD_OK, /* first, no error */
1720 CURL_FORMADD_MEMORY,
1721 CURL_FORMADD_OPTION_TWICE,
1722 CURL_FORMADD_NULL,
1723 CURL_FORMADD_UNKNOWN_OPTION,
1724 CURL_FORMADD_INCOMPLETE,
1725 CURL_FORMADD_ILLEGAL_ARRAY,
1726 CURL_FORMADD_DISABLED, /* libcurl was built with this disabled */
1728 CURL_FORMADD_LAST /* last */
1729 } CURLFORMcode;
1732 * NAME curl_formadd()
1734 * DESCRIPTION
1736 * Pretty advanced function for building multi-part formposts. Each invoke
1737 * adds one part that together construct a full post. Then use
1738 * CURLOPT_HTTPPOST to send it off to libcurl.
1740 CURL_EXTERN CURLFORMcode curl_formadd(struct curl_httppost **httppost,
1741 struct curl_httppost **last_post,
1742 ...);
1745 * callback function for curl_formget()
1746 * The void *arg pointer will be the one passed as second argument to
1747 * curl_formget().
1748 * The character buffer passed to it must not be freed.
1749 * Should return the buffer length passed to it as the argument "len" on
1750 * success.
1752 typedef size_t (*curl_formget_callback)(void *arg, const char *buf,
1753 size_t len);
1756 * NAME curl_formget()
1758 * DESCRIPTION
1760 * Serialize a curl_httppost struct built with curl_formadd().
1761 * Accepts a void pointer as second argument which will be passed to
1762 * the curl_formget_callback function.
1763 * Returns 0 on success.
1765 CURL_EXTERN int curl_formget(struct curl_httppost *form, void *arg,
1766 curl_formget_callback append);
1768 * NAME curl_formfree()
1770 * DESCRIPTION
1772 * Free a multipart formpost previously built with curl_formadd().
1774 CURL_EXTERN void curl_formfree(struct curl_httppost *form);
1777 * NAME curl_getenv()
1779 * DESCRIPTION
1781 * Returns a malloc()'ed string that MUST be curl_free()ed after usage is
1782 * complete. DEPRECATED - see lib/README.curlx
1784 CURL_EXTERN char *curl_getenv(const char *variable);
1787 * NAME curl_version()
1789 * DESCRIPTION
1791 * Returns a static ascii string of the libcurl version.
1793 CURL_EXTERN char *curl_version(void);
1796 * NAME curl_easy_escape()
1798 * DESCRIPTION
1800 * Escapes URL strings (converts all letters consider illegal in URLs to their
1801 * %XX versions). This function returns a new allocated string or NULL if an
1802 * error occurred.
1804 CURL_EXTERN char *curl_easy_escape(CURL *handle,
1805 const char *string,
1806 int length);
1808 /* the previous version: */
1809 CURL_EXTERN char *curl_escape(const char *string,
1810 int length);
1814 * NAME curl_easy_unescape()
1816 * DESCRIPTION
1818 * Unescapes URL encoding in strings (converts all %XX codes to their 8bit
1819 * versions). This function returns a new allocated string or NULL if an error
1820 * occurred.
1821 * Conversion Note: On non-ASCII platforms the ASCII %XX codes are
1822 * converted into the host encoding.
1824 CURL_EXTERN char *curl_easy_unescape(CURL *handle,
1825 const char *string,
1826 int length,
1827 int *outlength);
1829 /* the previous version */
1830 CURL_EXTERN char *curl_unescape(const char *string,
1831 int length);
1834 * NAME curl_free()
1836 * DESCRIPTION
1838 * Provided for de-allocation in the same translation unit that did the
1839 * allocation. Added in libcurl 7.10
1841 CURL_EXTERN void curl_free(void *p);
1844 * NAME curl_global_init()
1846 * DESCRIPTION
1848 * curl_global_init() should be invoked exactly once for each application that
1849 * uses libcurl and before any call of other libcurl functions.
1851 * This function is not thread-safe!
1853 CURL_EXTERN CURLcode curl_global_init(long flags);
1856 * NAME curl_global_init_mem()
1858 * DESCRIPTION
1860 * curl_global_init() or curl_global_init_mem() should be invoked exactly once
1861 * for each application that uses libcurl. This function can be used to
1862 * initialize libcurl and set user defined memory management callback
1863 * functions. Users can implement memory management routines to check for
1864 * memory leaks, check for mis-use of the curl library etc. User registered
1865 * callback routines with be invoked by this library instead of the system
1866 * memory management routines like malloc, free etc.
1868 CURL_EXTERN CURLcode curl_global_init_mem(long flags,
1869 curl_malloc_callback m,
1870 curl_free_callback f,
1871 curl_realloc_callback r,
1872 curl_strdup_callback s,
1873 curl_calloc_callback c);
1876 * NAME curl_global_cleanup()
1878 * DESCRIPTION
1880 * curl_global_cleanup() should be invoked exactly once for each application
1881 * that uses libcurl
1883 CURL_EXTERN void curl_global_cleanup(void);
1885 /* linked-list structure for the CURLOPT_QUOTE option (and other) */
1886 struct curl_slist {
1887 char *data;
1888 struct curl_slist *next;
1892 * NAME curl_slist_append()
1894 * DESCRIPTION
1896 * Appends a string to a linked list. If no list exists, it will be created
1897 * first. Returns the new list, after appending.
1899 CURL_EXTERN struct curl_slist *curl_slist_append(struct curl_slist *,
1900 const char *);
1903 * NAME curl_slist_free_all()
1905 * DESCRIPTION
1907 * free a previously built curl_slist.
1909 CURL_EXTERN void curl_slist_free_all(struct curl_slist *);
1912 * NAME curl_getdate()
1914 * DESCRIPTION
1916 * Returns the time, in seconds since 1 Jan 1970 of the time string given in
1917 * the first argument. The time argument in the second parameter is unused
1918 * and should be set to NULL.
1920 CURL_EXTERN time_t curl_getdate(const char *p, const time_t *unused);
1922 /* info about the certificate chain, only for OpenSSL builds. Asked
1923 for with CURLOPT_CERTINFO / CURLINFO_CERTINFO */
1924 struct curl_certinfo {
1925 int num_of_certs; /* number of certificates with information */
1926 struct curl_slist **certinfo; /* for each index in this array, there's a
1927 linked list with textual information in the
1928 format "name: value" */
1931 #define CURLINFO_STRING 0x100000
1932 #define CURLINFO_LONG 0x200000
1933 #define CURLINFO_DOUBLE 0x300000
1934 #define CURLINFO_SLIST 0x400000
1935 #define CURLINFO_MASK 0x0fffff
1936 #define CURLINFO_TYPEMASK 0xf00000
1938 typedef enum {
1939 CURLINFO_NONE, /* first, never use this */
1940 CURLINFO_EFFECTIVE_URL = CURLINFO_STRING + 1,
1941 CURLINFO_RESPONSE_CODE = CURLINFO_LONG + 2,
1942 CURLINFO_TOTAL_TIME = CURLINFO_DOUBLE + 3,
1943 CURLINFO_NAMELOOKUP_TIME = CURLINFO_DOUBLE + 4,
1944 CURLINFO_CONNECT_TIME = CURLINFO_DOUBLE + 5,
1945 CURLINFO_PRETRANSFER_TIME = CURLINFO_DOUBLE + 6,
1946 CURLINFO_SIZE_UPLOAD = CURLINFO_DOUBLE + 7,
1947 CURLINFO_SIZE_DOWNLOAD = CURLINFO_DOUBLE + 8,
1948 CURLINFO_SPEED_DOWNLOAD = CURLINFO_DOUBLE + 9,
1949 CURLINFO_SPEED_UPLOAD = CURLINFO_DOUBLE + 10,
1950 CURLINFO_HEADER_SIZE = CURLINFO_LONG + 11,
1951 CURLINFO_REQUEST_SIZE = CURLINFO_LONG + 12,
1952 CURLINFO_SSL_VERIFYRESULT = CURLINFO_LONG + 13,
1953 CURLINFO_FILETIME = CURLINFO_LONG + 14,
1954 CURLINFO_CONTENT_LENGTH_DOWNLOAD = CURLINFO_DOUBLE + 15,
1955 CURLINFO_CONTENT_LENGTH_UPLOAD = CURLINFO_DOUBLE + 16,
1956 CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE + 17,
1957 CURLINFO_CONTENT_TYPE = CURLINFO_STRING + 18,
1958 CURLINFO_REDIRECT_TIME = CURLINFO_DOUBLE + 19,
1959 CURLINFO_REDIRECT_COUNT = CURLINFO_LONG + 20,
1960 CURLINFO_PRIVATE = CURLINFO_STRING + 21,
1961 CURLINFO_HTTP_CONNECTCODE = CURLINFO_LONG + 22,
1962 CURLINFO_HTTPAUTH_AVAIL = CURLINFO_LONG + 23,
1963 CURLINFO_PROXYAUTH_AVAIL = CURLINFO_LONG + 24,
1964 CURLINFO_OS_ERRNO = CURLINFO_LONG + 25,
1965 CURLINFO_NUM_CONNECTS = CURLINFO_LONG + 26,
1966 CURLINFO_SSL_ENGINES = CURLINFO_SLIST + 27,
1967 CURLINFO_COOKIELIST = CURLINFO_SLIST + 28,
1968 CURLINFO_LASTSOCKET = CURLINFO_LONG + 29,
1969 CURLINFO_FTP_ENTRY_PATH = CURLINFO_STRING + 30,
1970 CURLINFO_REDIRECT_URL = CURLINFO_STRING + 31,
1971 CURLINFO_PRIMARY_IP = CURLINFO_STRING + 32,
1972 CURLINFO_APPCONNECT_TIME = CURLINFO_DOUBLE + 33,
1973 CURLINFO_CERTINFO = CURLINFO_SLIST + 34,
1974 CURLINFO_CONDITION_UNMET = CURLINFO_LONG + 35,
1975 CURLINFO_RTSP_SESSION_ID = CURLINFO_STRING + 36,
1976 CURLINFO_RTSP_CLIENT_CSEQ = CURLINFO_LONG + 37,
1977 CURLINFO_RTSP_SERVER_CSEQ = CURLINFO_LONG + 38,
1978 CURLINFO_RTSP_CSEQ_RECV = CURLINFO_LONG + 39,
1979 CURLINFO_PRIMARY_PORT = CURLINFO_LONG + 40,
1980 CURLINFO_LOCAL_IP = CURLINFO_STRING + 41,
1981 CURLINFO_LOCAL_PORT = CURLINFO_LONG + 42,
1982 /* Fill in new entries below here! */
1984 CURLINFO_LASTONE = 42
1985 } CURLINFO;
1987 /* CURLINFO_RESPONSE_CODE is the new name for the option previously known as
1988 CURLINFO_HTTP_CODE */
1989 #define CURLINFO_HTTP_CODE CURLINFO_RESPONSE_CODE
1991 typedef enum {
1992 CURLCLOSEPOLICY_NONE, /* first, never use this */
1994 CURLCLOSEPOLICY_OLDEST,
1995 CURLCLOSEPOLICY_LEAST_RECENTLY_USED,
1996 CURLCLOSEPOLICY_LEAST_TRAFFIC,
1997 CURLCLOSEPOLICY_SLOWEST,
1998 CURLCLOSEPOLICY_CALLBACK,
2000 CURLCLOSEPOLICY_LAST /* last, never use this */
2001 } curl_closepolicy;
2003 #define CURL_GLOBAL_SSL (1<<0)
2004 #define CURL_GLOBAL_WIN32 (1<<1)
2005 #define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL|CURL_GLOBAL_WIN32)
2006 #define CURL_GLOBAL_NOTHING 0
2007 #define CURL_GLOBAL_DEFAULT CURL_GLOBAL_ALL
2010 /*****************************************************************************
2011 * Setup defines, protos etc for the sharing stuff.
2014 /* Different data locks for a single share */
2015 typedef enum {
2016 CURL_LOCK_DATA_NONE = 0,
2017 /* CURL_LOCK_DATA_SHARE is used internally to say that
2018 * the locking is just made to change the internal state of the share
2019 * itself.
2021 CURL_LOCK_DATA_SHARE,
2022 CURL_LOCK_DATA_COOKIE,
2023 CURL_LOCK_DATA_DNS,
2024 CURL_LOCK_DATA_SSL_SESSION,
2025 CURL_LOCK_DATA_CONNECT,
2026 CURL_LOCK_DATA_LAST
2027 } curl_lock_data;
2029 /* Different lock access types */
2030 typedef enum {
2031 CURL_LOCK_ACCESS_NONE = 0, /* unspecified action */
2032 CURL_LOCK_ACCESS_SHARED = 1, /* for read perhaps */
2033 CURL_LOCK_ACCESS_SINGLE = 2, /* for write perhaps */
2034 CURL_LOCK_ACCESS_LAST /* never use */
2035 } curl_lock_access;
2037 typedef void (*curl_lock_function)(CURL *handle,
2038 curl_lock_data data,
2039 curl_lock_access locktype,
2040 void *userptr);
2041 typedef void (*curl_unlock_function)(CURL *handle,
2042 curl_lock_data data,
2043 void *userptr);
2045 typedef void CURLSH;
2047 typedef enum {
2048 CURLSHE_OK, /* all is fine */
2049 CURLSHE_BAD_OPTION, /* 1 */
2050 CURLSHE_IN_USE, /* 2 */
2051 CURLSHE_INVALID, /* 3 */
2052 CURLSHE_NOMEM, /* 4 out of memory */
2053 CURLSHE_NOT_BUILT_IN, /* 5 feature not present in lib */
2054 CURLSHE_LAST /* never use */
2055 } CURLSHcode;
2057 typedef enum {
2058 CURLSHOPT_NONE, /* don't use */
2059 CURLSHOPT_SHARE, /* specify a data type to share */
2060 CURLSHOPT_UNSHARE, /* specify which data type to stop sharing */
2061 CURLSHOPT_LOCKFUNC, /* pass in a 'curl_lock_function' pointer */
2062 CURLSHOPT_UNLOCKFUNC, /* pass in a 'curl_unlock_function' pointer */
2063 CURLSHOPT_USERDATA, /* pass in a user data pointer used in the lock/unlock
2064 callback functions */
2065 CURLSHOPT_LAST /* never use */
2066 } CURLSHoption;
2068 CURL_EXTERN CURLSH *curl_share_init(void);
2069 CURL_EXTERN CURLSHcode curl_share_setopt(CURLSH *, CURLSHoption option, ...);
2070 CURL_EXTERN CURLSHcode curl_share_cleanup(CURLSH *);
2072 /****************************************************************************
2073 * Structures for querying information about the curl library at runtime.
2076 typedef enum {
2077 CURLVERSION_FIRST,
2078 CURLVERSION_SECOND,
2079 CURLVERSION_THIRD,
2080 CURLVERSION_FOURTH,
2081 CURLVERSION_LAST /* never actually use this */
2082 } CURLversion;
2084 /* The 'CURLVERSION_NOW' is the symbolic name meant to be used by
2085 basically all programs ever that want to get version information. It is
2086 meant to be a built-in version number for what kind of struct the caller
2087 expects. If the struct ever changes, we redefine the NOW to another enum
2088 from above. */
2089 #define CURLVERSION_NOW CURLVERSION_FOURTH
2091 typedef struct {
2092 CURLversion age; /* age of the returned struct */
2093 const char *version; /* LIBCURL_VERSION */
2094 unsigned int version_num; /* LIBCURL_VERSION_NUM */
2095 const char *host; /* OS/host/cpu/machine when configured */
2096 int features; /* bitmask, see defines below */
2097 const char *ssl_version; /* human readable string */
2098 long ssl_version_num; /* not used anymore, always 0 */
2099 const char *libz_version; /* human readable string */
2100 /* protocols is terminated by an entry with a NULL protoname */
2101 const char * const *protocols;
2103 /* The fields below this were added in CURLVERSION_SECOND */
2104 const char *ares;
2105 int ares_num;
2107 /* This field was added in CURLVERSION_THIRD */
2108 const char *libidn;
2110 /* These field were added in CURLVERSION_FOURTH */
2112 /* Same as '_libiconv_version' if built with HAVE_ICONV */
2113 int iconv_ver_num;
2115 const char *libssh_version; /* human readable string */
2117 } curl_version_info_data;
2119 #define CURL_VERSION_IPV6 (1<<0) /* IPv6-enabled */
2120 #define CURL_VERSION_KERBEROS4 (1<<1) /* kerberos auth is supported */
2121 #define CURL_VERSION_SSL (1<<2) /* SSL options are present */
2122 #define CURL_VERSION_LIBZ (1<<3) /* libz features are present */
2123 #define CURL_VERSION_NTLM (1<<4) /* NTLM auth is supported */
2124 #define CURL_VERSION_GSSNEGOTIATE (1<<5) /* Negotiate auth support */
2125 #define CURL_VERSION_DEBUG (1<<6) /* built with debug capabilities */
2126 #define CURL_VERSION_ASYNCHDNS (1<<7) /* asynchronous dns resolves */
2127 #define CURL_VERSION_SPNEGO (1<<8) /* SPNEGO auth */
2128 #define CURL_VERSION_LARGEFILE (1<<9) /* supports files bigger than 2GB */
2129 #define CURL_VERSION_IDN (1<<10) /* International Domain Names support */
2130 #define CURL_VERSION_SSPI (1<<11) /* SSPI is supported */
2131 #define CURL_VERSION_CONV (1<<12) /* character conversions supported */
2132 #define CURL_VERSION_CURLDEBUG (1<<13) /* debug memory tracking supported */
2133 #define CURL_VERSION_TLSAUTH_SRP (1<<14) /* TLS-SRP auth is supported */
2134 #define CURL_VERSION_NTLM_WB (1<<15) /* NTLM delegating to winbind helper */
2137 * NAME curl_version_info()
2139 * DESCRIPTION
2141 * This function returns a pointer to a static copy of the version info
2142 * struct. See above.
2144 CURL_EXTERN curl_version_info_data *curl_version_info(CURLversion);
2147 * NAME curl_easy_strerror()
2149 * DESCRIPTION
2151 * The curl_easy_strerror function may be used to turn a CURLcode value
2152 * into the equivalent human readable error string. This is useful
2153 * for printing meaningful error messages.
2155 CURL_EXTERN const char *curl_easy_strerror(CURLcode);
2158 * NAME curl_share_strerror()
2160 * DESCRIPTION
2162 * The curl_share_strerror function may be used to turn a CURLSHcode value
2163 * into the equivalent human readable error string. This is useful
2164 * for printing meaningful error messages.
2166 CURL_EXTERN const char *curl_share_strerror(CURLSHcode);
2169 * NAME curl_easy_pause()
2171 * DESCRIPTION
2173 * The curl_easy_pause function pauses or unpauses transfers. Select the new
2174 * state by setting the bitmask, use the convenience defines below.
2177 CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask);
2179 #define CURLPAUSE_RECV (1<<0)
2180 #define CURLPAUSE_RECV_CONT (0)
2182 #define CURLPAUSE_SEND (1<<2)
2183 #define CURLPAUSE_SEND_CONT (0)
2185 #define CURLPAUSE_ALL (CURLPAUSE_RECV|CURLPAUSE_SEND)
2186 #define CURLPAUSE_CONT (CURLPAUSE_RECV_CONT|CURLPAUSE_SEND_CONT)
2188 #ifdef __cplusplus
2190 #endif
2192 /* unfortunately, the easy.h and multi.h include files need options and info
2193 stuff before they can be included! */
2194 #include "easy.h" /* nothing in curl is fun without the easy stuff */
2195 #include "multi.h"
2197 /* the typechecker doesn't work in C++ (yet) */
2198 #if defined(__GNUC__) && defined(__GNUC_MINOR__) && \
2199 ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && \
2200 !defined(__cplusplus) && !defined(CURL_DISABLE_TYPECHECK)
2201 #include "typecheck-gcc.h"
2202 #else
2203 #if defined(__STDC__) && (__STDC__ >= 1)
2204 /* This preprocessor magic that replaces a call with the exact same call is
2205 only done to make sure application authors pass exactly three arguments
2206 to these functions. */
2207 #define curl_easy_setopt(handle,opt,param) curl_easy_setopt(handle,opt,param)
2208 #define curl_easy_getinfo(handle,info,arg) curl_easy_getinfo(handle,info,arg)
2209 #define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param)
2210 #define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param)
2211 #endif /* __STDC__ >= 1 */
2212 #endif /* gcc >= 4.3 && !__cplusplus */
2214 #endif /* __CURL_CURL_H */