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

TAPI编程

开发平台:

Visual C++

  1. #ifndef __CURL_CURL_H
  2. #define __CURL_CURL_H
  3. /***************************************************************************
  4.  *                                  _   _ ____  _
  5.  *  Project                     ___| | | |  _ | |
  6.  *                             / __| | | | |_) | |
  7.  *                            | (__| |_| |  _ <| |___
  8.  *                             ___|___/|_| ______|
  9.  *
  10.  * Copyright (C) 1998 - 2008, 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 http://curl.haxx.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.  * $Id: curl.h,v 1.371 2008-12-10 23:13:31 bagder Exp $
  24.  ***************************************************************************/
  25. /*
  26.  * If you have libcurl problems, all docs and details are found here:
  27.  *   http://curl.haxx.se/libcurl/
  28.  *
  29.  * curl-library mailing list subscription and unsubscription web interface:
  30.  *   http://cool.haxx.se/mailman/listinfo/curl-library/
  31.  */
  32. #include "curlver.h"         /* libcurl version defines   */
  33. #include "libcurl/include/curl/curlbuild.h"  /* libcurl build definitions */
  34. #include "curlrules.h"       /* libcurl rules enforcement */
  35. /*
  36.  * Define WIN32 when build target is Win32 API
  37.  */
  38. #if (defined(_WIN32) || defined(__WIN32__)) && 
  39.      !defined(WIN32) && !defined(__SYMBIAN32__)
  40. #define WIN32
  41. #endif
  42. #include <stdio.h>
  43. #include <limits.h>
  44. /* The include stuff here below is mainly for time_t! */
  45. #ifdef vms
  46. # include <types.h>
  47. # include <time.h>
  48. #else
  49. # include <sys/types.h>
  50. # include <time.h>
  51. #endif /* defined (vms) */
  52. #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__GNUC__) && 
  53.   !defined(__CYGWIN__) || defined(__MINGW32__)
  54. #if !(defined(_WINSOCKAPI_) || defined(_WINSOCK_H))
  55. /* The check above prevents the winsock2 inclusion if winsock.h already was
  56.    included, since they can't co-exist without problems */
  57. #include <winsock2.h>
  58. #include <ws2tcpip.h>
  59. #endif
  60. #else
  61. /* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish
  62.    libc5-based Linux systems. Only include it on system that are known to
  63.    require it! */
  64. #if defined(_AIX) || defined(__NOVELL_LIBC__) || defined(__NetBSD__) || 
  65.     defined(__minix) || defined(__SYMBIAN32__) || defined(__INTEGRITY)
  66. #include <sys/select.h>
  67. #endif
  68. #ifndef _WIN32_WCE
  69. #include <sys/socket.h>
  70. #endif
  71. #if !defined(WIN32) && !defined(__WATCOMC__)
  72. #include <sys/time.h>
  73. #endif
  74. #include <sys/types.h>
  75. #endif
  76. #ifdef __BEOS__
  77. #include <support/SupportDefs.h>
  78. #endif
  79. #ifdef  __cplusplus
  80. extern "C" {
  81. #endif
  82. typedef void CURL;
  83. /*
  84.  * Decorate exportable functions for Win32 and Symbian OS DLL linking.
  85.  * This avoids using a .def file for building libcurl.dll.
  86.  */
  87. #if (defined(WIN32) || defined(_WIN32) || defined(__SYMBIAN32__)) && 
  88.      !defined(CURL_STATICLIB)
  89. #if defined(BUILDING_LIBCURL)
  90. #define CURL_EXTERN  __declspec(dllexport)
  91. #else
  92. #define CURL_EXTERN  __declspec(dllimport)
  93. #endif
  94. #else
  95. #ifdef CURL_HIDDEN_SYMBOLS
  96. /*
  97.  * This definition is used to make external definitions visible in the
  98.  * shared library when symbols are hidden by default.  It makes no
  99.  * difference when compiling applications whether this is set or not,
  100.  * only when compiling the library.
  101.  */
  102. #define CURL_EXTERN CURL_EXTERN_SYMBOL
  103. #else
  104. #define CURL_EXTERN
  105. #endif
  106. #endif
  107. #ifndef curl_socket_typedef
  108. /* socket typedef */
  109. #ifdef WIN32
  110. typedef SOCKET curl_socket_t;
  111. #define CURL_SOCKET_BAD INVALID_SOCKET
  112. #else
  113. typedef int curl_socket_t;
  114. #define CURL_SOCKET_BAD -1
  115. #endif
  116. #define curl_socket_typedef
  117. #endif /* curl_socket_typedef */
  118. struct curl_httppost {
  119.   struct curl_httppost *next;       /* next entry in the list */
  120.   char *name;                       /* pointer to allocated name */
  121.   long namelength;                  /* length of name length */
  122.   char *contents;                   /* pointer to allocated data contents */
  123.   long contentslength;              /* length of contents field */
  124.   char *buffer;                     /* pointer to allocated buffer contents */
  125.   long bufferlength;                /* length of buffer field */
  126.   char *contenttype;                /* Content-Type */
  127.   struct curl_slist* contentheader; /* list of extra headers for this form */
  128.   struct curl_httppost *more;       /* if one field name has more than one
  129.                                        file, this link should link to following
  130.                                        files */
  131.   long flags;                       /* as defined below */
  132. #define HTTPPOST_FILENAME (1<<0)    /* specified content is a file name */
  133. #define HTTPPOST_READFILE (1<<1)    /* specified content is a file name */
  134. #define HTTPPOST_PTRNAME (1<<2)     /* name is only stored pointer
  135.                                        do not free in formfree */
  136. #define HTTPPOST_PTRCONTENTS (1<<3) /* contents is only stored pointer
  137.                                        do not free in formfree */
  138. #define HTTPPOST_BUFFER (1<<4)      /* upload file from buffer */
  139. #define HTTPPOST_PTRBUFFER (1<<5)   /* upload file from pointer contents */
  140. #define HTTPPOST_CALLBACK (1<<6)    /* upload file contents by using the
  141.                                        regular read callback to get the data
  142.                                        and pass the given pointer as custom
  143.                                        pointer */
  144.   char *showfilename;               /* The file name to show. If not set, the
  145.                                        actual file name will be used (if this
  146.                                        is a file part) */
  147.   void *userp;                      /* custom pointer used for
  148.                                        HTTPPOST_CALLBACK posts */
  149. };
  150. typedef int (*curl_progress_callback)(void *clientp,
  151.                                       double dltotal,
  152.                                       double dlnow,
  153.                                       double ultotal,
  154.                                       double ulnow);
  155. #ifndef CURL_MAX_WRITE_SIZE
  156.   /* Tests have proven that 20K is a very bad buffer size for uploads on
  157.      Windows, while 16K for some odd reason performed a lot better.
  158.      We do the ifndef check to allow this value to easier be changed at build
  159.      time for those who feel adventurous. */
  160. #define CURL_MAX_WRITE_SIZE 16384
  161. #endif
  162. /* This is a magic return code for the write callback that, when returned,
  163.    will signal libcurl to pause receiving on the current transfer. */
  164. #define CURL_WRITEFUNC_PAUSE 0x10000001
  165. typedef size_t (*curl_write_callback)(char *buffer,
  166.                                       size_t size,
  167.                                       size_t nitems,
  168.                                       void *outstream);
  169. /* This is a return code for the read callback that, when returned, will
  170.    signal libcurl to immediately abort the current transfer. */
  171. #define CURL_READFUNC_ABORT 0x10000000
  172. /* This is a return code for the read callback that, when returned, will
  173.    signal libcurl to pause sending data on the current transfer. */
  174. #define CURL_READFUNC_PAUSE 0x10000001
  175. typedef int (*curl_seek_callback)(void *instream,
  176.                                   curl_off_t offset,
  177.                                   int origin); /* 'whence' */
  178. typedef size_t (*curl_read_callback)(char *buffer,
  179.                                       size_t size,
  180.                                       size_t nitems,
  181.                                       void *instream);
  182. typedef enum  {
  183.   CURLSOCKTYPE_IPCXN, /* socket created for a specific IP connection */
  184.   CURLSOCKTYPE_LAST   /* never use */
  185. } curlsocktype;
  186. typedef int (*curl_sockopt_callback)(void *clientp,
  187.                                      curl_socket_t curlfd,
  188.                                      curlsocktype purpose);
  189. struct curl_sockaddr {
  190.   int family;
  191.   int socktype;
  192.   int protocol;
  193.   unsigned int addrlen; /* addrlen was a socklen_t type before 7.18.0 but it
  194.                            turned really ugly and painful on the systems that
  195.                            lack this type */
  196.   struct sockaddr addr;
  197. };
  198. typedef curl_socket_t
  199. (*curl_opensocket_callback)(void *clientp,
  200.                             curlsocktype purpose,
  201.                             struct curl_sockaddr *address);
  202. #ifndef CURL_NO_OLDIES
  203.   /* not used since 7.10.8, will be removed in a future release */
  204. typedef int (*curl_passwd_callback)(void *clientp,
  205.                                     const char *prompt,
  206.                                     char *buffer,
  207.                                     int buflen);
  208. #endif
  209. typedef enum {
  210.   CURLIOE_OK,            /* I/O operation successful */
  211.   CURLIOE_UNKNOWNCMD,    /* command was unknown to callback */
  212.   CURLIOE_FAILRESTART,   /* failed to restart the read */
  213.   CURLIOE_LAST           /* never use */
  214. } curlioerr;
  215. typedef enum  {
  216.   CURLIOCMD_NOP,         /* no operation */
  217.   CURLIOCMD_RESTARTREAD, /* restart the read stream from start */
  218.   CURLIOCMD_LAST         /* never use */
  219. } curliocmd;
  220. typedef curlioerr (*curl_ioctl_callback)(CURL *handle,
  221.                                          int cmd,
  222.                                          void *clientp);
  223. /*
  224.  * The following typedef's are signatures of malloc, free, realloc, strdup and
  225.  * calloc respectively.  Function pointers of these types can be passed to the
  226.  * curl_global_init_mem() function to set user defined memory management
  227.  * callback routines.
  228.  */
  229. typedef void *(*curl_malloc_callback)(size_t size);
  230. typedef void (*curl_free_callback)(void *ptr);
  231. typedef void *(*curl_realloc_callback)(void *ptr, size_t size);
  232. typedef char *(*curl_strdup_callback)(const char *str);
  233. typedef void *(*curl_calloc_callback)(size_t nmemb, size_t size);
  234. /* the kind of data that is passed to information_callback*/
  235. typedef enum {
  236.   CURLINFO_TEXT = 0,
  237.   CURLINFO_HEADER_IN,    /* 1 */
  238.   CURLINFO_HEADER_OUT,   /* 2 */
  239.   CURLINFO_DATA_IN,      /* 3 */
  240.   CURLINFO_DATA_OUT,     /* 4 */
  241.   CURLINFO_SSL_DATA_IN,  /* 5 */
  242.   CURLINFO_SSL_DATA_OUT, /* 6 */
  243.   CURLINFO_END
  244. } curl_infotype;
  245. typedef int (*curl_debug_callback)
  246.        (CURL *handle,      /* the handle/transfer this concerns */
  247.         curl_infotype type, /* what kind of data */
  248.         char *data,        /* points to the data */
  249.         size_t size,       /* size of the data pointed to */
  250.         void *userptr);    /* whatever the user please */
  251. /* All possible error codes from all sorts of curl functions. Future versions
  252.    may return other values, stay prepared.
  253.    Always add new return codes last. Never *EVER* remove any. The return
  254.    codes must remain the same!
  255.  */
  256. typedef enum {
  257.   CURLE_OK = 0,
  258.   CURLE_UNSUPPORTED_PROTOCOL,    /* 1 */
  259.   CURLE_FAILED_INIT,             /* 2 */
  260.   CURLE_URL_MALFORMAT,           /* 3 */
  261.   CURLE_OBSOLETE4,               /* 4 - NOT USED */
  262.   CURLE_COULDNT_RESOLVE_PROXY,   /* 5 */
  263.   CURLE_COULDNT_RESOLVE_HOST,    /* 6 */
  264.   CURLE_COULDNT_CONNECT,         /* 7 */
  265.   CURLE_FTP_WEIRD_SERVER_REPLY,  /* 8 */
  266.   CURLE_REMOTE_ACCESS_DENIED,    /* 9 a service was denied by the server
  267.                                     due to lack of access - when login fails
  268.                                     this is not returned. */
  269.   CURLE_OBSOLETE10,              /* 10 - NOT USED */
  270.   CURLE_FTP_WEIRD_PASS_REPLY,    /* 11 */
  271.   CURLE_OBSOLETE12,              /* 12 - NOT USED */
  272.   CURLE_FTP_WEIRD_PASV_REPLY,    /* 13 */
  273.   CURLE_FTP_WEIRD_227_FORMAT,    /* 14 */
  274.   CURLE_FTP_CANT_GET_HOST,       /* 15 */
  275.   CURLE_OBSOLETE16,              /* 16 - NOT USED */
  276.   CURLE_FTP_COULDNT_SET_TYPE,    /* 17 */
  277.   CURLE_PARTIAL_FILE,            /* 18 */
  278.   CURLE_FTP_COULDNT_RETR_FILE,   /* 19 */
  279.   CURLE_OBSOLETE20,              /* 20 - NOT USED */
  280.   CURLE_QUOTE_ERROR,             /* 21 - quote command failure */
  281.   CURLE_HTTP_RETURNED_ERROR,     /* 22 */
  282.   CURLE_WRITE_ERROR,             /* 23 */
  283.   CURLE_OBSOLETE24,              /* 24 - NOT USED */
  284.   CURLE_UPLOAD_FAILED,           /* 25 - failed upload "command" */
  285.   CURLE_READ_ERROR,              /* 26 - couldn't open/read from file */
  286.   CURLE_OUT_OF_MEMORY,           /* 27 */
  287.   /* Note: CURLE_OUT_OF_MEMORY may sometimes indicate a conversion error
  288.            instead of a memory allocation error if CURL_DOES_CONVERSIONS
  289.            is defined
  290.   */
  291.   CURLE_OPERATION_TIMEDOUT,      /* 28 - the timeout time was reached */
  292.   CURLE_OBSOLETE29,              /* 29 - NOT USED */
  293.   CURLE_FTP_PORT_FAILED,         /* 30 - FTP PORT operation failed */
  294.   CURLE_FTP_COULDNT_USE_REST,    /* 31 - the REST command failed */
  295.   CURLE_OBSOLETE32,              /* 32 - NOT USED */
  296.   CURLE_RANGE_ERROR,             /* 33 - RANGE "command" didn't work */
  297.   CURLE_HTTP_POST_ERROR,         /* 34 */
  298.   CURLE_SSL_CONNECT_ERROR,       /* 35 - wrong when connecting with SSL */
  299.   CURLE_BAD_DOWNLOAD_RESUME,     /* 36 - couldn't resume download */
  300.   CURLE_FILE_COULDNT_READ_FILE,  /* 37 */
  301.   CURLE_LDAP_CANNOT_BIND,        /* 38 */
  302.   CURLE_LDAP_SEARCH_FAILED,      /* 39 */
  303.   CURLE_OBSOLETE40,              /* 40 - NOT USED */
  304.   CURLE_FUNCTION_NOT_FOUND,      /* 41 */
  305.   CURLE_ABORTED_BY_CALLBACK,     /* 42 */
  306.   CURLE_BAD_FUNCTION_ARGUMENT,   /* 43 */
  307.   CURLE_OBSOLETE44,              /* 44 - NOT USED */
  308.   CURLE_INTERFACE_FAILED,        /* 45 - CURLOPT_INTERFACE failed */
  309.   CURLE_OBSOLETE46,              /* 46 - NOT USED */
  310.   CURLE_TOO_MANY_REDIRECTS ,     /* 47 - catch endless re-direct loops */
  311.   CURLE_UNKNOWN_TELNET_OPTION,   /* 48 - User specified an unknown option */
  312.   CURLE_TELNET_OPTION_SYNTAX ,   /* 49 - Malformed telnet option */
  313.   CURLE_OBSOLETE50,              /* 50 - NOT USED */
  314.   CURLE_PEER_FAILED_VERIFICATION, /* 51 - peer's certificate or fingerprint
  315.                                      wasn't verified fine */
  316.   CURLE_GOT_NOTHING,             /* 52 - when this is a specific error */
  317.   CURLE_SSL_ENGINE_NOTFOUND,     /* 53 - SSL crypto engine not found */
  318.   CURLE_SSL_ENGINE_SETFAILED,    /* 54 - can not set SSL crypto engine as
  319.                                     default */
  320.   CURLE_SEND_ERROR,              /* 55 - failed sending network data */
  321.   CURLE_RECV_ERROR,              /* 56 - failure in receiving network data */
  322.   CURLE_OBSOLETE57,              /* 57 - NOT IN USE */
  323.   CURLE_SSL_CERTPROBLEM,         /* 58 - problem with the local certificate */
  324.   CURLE_SSL_CIPHER,              /* 59 - couldn't use specified cipher */
  325.   CURLE_SSL_CACERT,              /* 60 - problem with the CA cert (path?) */
  326.   CURLE_BAD_CONTENT_ENCODING,    /* 61 - Unrecognized transfer encoding */
  327.   CURLE_LDAP_INVALID_URL,        /* 62 - Invalid LDAP URL */
  328.   CURLE_FILESIZE_EXCEEDED,       /* 63 - Maximum file size exceeded */
  329.   CURLE_USE_SSL_FAILED,          /* 64 - Requested FTP SSL level failed */
  330.   CURLE_SEND_FAIL_REWIND,        /* 65 - Sending the data requires a rewind
  331.                                     that failed */
  332.   CURLE_SSL_ENGINE_INITFAILED,   /* 66 - failed to initialise ENGINE */
  333.   CURLE_LOGIN_DENIED,            /* 67 - user, password or similar was not
  334.                                     accepted and we failed to login */
  335.   CURLE_TFTP_NOTFOUND,           /* 68 - file not found on server */
  336.   CURLE_TFTP_PERM,               /* 69 - permission problem on server */
  337.   CURLE_REMOTE_DISK_FULL,        /* 70 - out of disk space on server */
  338.   CURLE_TFTP_ILLEGAL,            /* 71 - Illegal TFTP operation */
  339.   CURLE_TFTP_UNKNOWNID,          /* 72 - Unknown transfer ID */
  340.   CURLE_REMOTE_FILE_EXISTS,      /* 73 - File already exists */
  341.   CURLE_TFTP_NOSUCHUSER,         /* 74 - No such user */
  342.   CURLE_CONV_FAILED,             /* 75 - conversion failed */
  343.   CURLE_CONV_REQD,               /* 76 - caller must register conversion
  344.                                     callbacks using curl_easy_setopt options
  345.                                     CURLOPT_CONV_FROM_NETWORK_FUNCTION,
  346.                                     CURLOPT_CONV_TO_NETWORK_FUNCTION, and
  347.                                     CURLOPT_CONV_FROM_UTF8_FUNCTION */
  348.   CURLE_SSL_CACERT_BADFILE,      /* 77 - could not load CACERT file, missing
  349.                                     or wrong format */
  350.   CURLE_REMOTE_FILE_NOT_FOUND,   /* 78 - remote file not found */
  351.   CURLE_SSH,                     /* 79 - error from the SSH layer, somewhat
  352.                                     generic so the error message will be of
  353.                                     interest when this has happened */
  354.   CURLE_SSL_SHUTDOWN_FAILED,     /* 80 - Failed to shut down the SSL
  355.                                     connection */
  356.   CURLE_AGAIN,                   /* 81 - socket is not ready for send/recv,
  357.                                     wait till it's ready and try again (Added
  358.                                     in 7.18.2) */
  359.   CURLE_SSL_CRL_BADFILE,         /* 82 - could not load CRL file, missing or
  360.                                     wrong format (Added in 7.19.0) */
  361.   CURLE_SSL_ISSUER_ERROR,        /* 83 - Issuer check failed.  (Added in
  362.                                     7.19.0) */
  363.   CURL_LAST /* never use! */
  364. } CURLcode;
  365. #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
  366.                           the obsolete stuff removed! */
  367. /* Backwards compatibility with older names */
  368. /* The following were added in 7.17.1 */
  369. /* These are scheduled to disappear by 2009 */
  370. #define CURLE_SSL_PEER_CERTIFICATE CURLE_PEER_FAILED_VERIFICATION
  371. /* The following were added in 7.17.0 */
  372. /* These are scheduled to disappear by 2009 */
  373. #define CURLE_OBSOLETE CURLE_OBSOLETE50 /* noone should be using this! */
  374. #define CURLE_BAD_PASSWORD_ENTERED CURLE_OBSOLETE46
  375. #define CURLE_BAD_CALLING_ORDER CURLE_OBSOLETE44
  376. #define CURLE_FTP_USER_PASSWORD_INCORRECT CURLE_OBSOLETE10
  377. #define CURLE_FTP_CANT_RECONNECT CURLE_OBSOLETE16
  378. #define CURLE_FTP_COULDNT_GET_SIZE CURLE_OBSOLETE32
  379. #define CURLE_FTP_COULDNT_SET_ASCII CURLE_OBSOLETE29
  380. #define CURLE_FTP_WEIRD_USER_REPLY CURLE_OBSOLETE12
  381. #define CURLE_FTP_WRITE_ERROR CURLE_OBSOLETE20
  382. #define CURLE_LIBRARY_NOT_FOUND CURLE_OBSOLETE40
  383. #define CURLE_MALFORMAT_USER CURLE_OBSOLETE24
  384. #define CURLE_SHARE_IN_USE CURLE_OBSOLETE57
  385. #define CURLE_URL_MALFORMAT_USER CURLE_OBSOLETE4
  386. #define CURLE_FTP_ACCESS_DENIED CURLE_REMOTE_ACCESS_DENIED
  387. #define CURLE_FTP_COULDNT_SET_BINARY CURLE_FTP_COULDNT_SET_TYPE
  388. #define CURLE_FTP_QUOTE_ERROR CURLE_QUOTE_ERROR
  389. #define CURLE_TFTP_DISKFULL CURLE_REMOTE_DISK_FULL
  390. #define CURLE_TFTP_EXISTS CURLE_REMOTE_FILE_EXISTS
  391. #define CURLE_HTTP_RANGE_ERROR CURLE_RANGE_ERROR
  392. #define CURLE_FTP_SSL_FAILED CURLE_USE_SSL_FAILED
  393. /* The following were added earlier */
  394. #define CURLE_OPERATION_TIMEOUTED CURLE_OPERATION_TIMEDOUT
  395. #define CURLE_HTTP_NOT_FOUND CURLE_HTTP_RETURNED_ERROR
  396. #define CURLE_HTTP_PORT_FAILED CURLE_INTERFACE_FAILED
  397. #define CURLE_FTP_COULDNT_STOR_FILE CURLE_UPLOAD_FAILED
  398. #define CURLE_FTP_PARTIAL_FILE CURLE_PARTIAL_FILE
  399. #define CURLE_FTP_BAD_DOWNLOAD_RESUME CURLE_BAD_DOWNLOAD_RESUME
  400. /* This was the error code 50 in 7.7.3 and a few earlier versions, this
  401.    is no longer used by libcurl but is instead #defined here only to not
  402.    make programs break */
  403. #define CURLE_ALREADY_COMPLETE 99999
  404. #endif /*!CURL_NO_OLDIES*/
  405. /* This prototype applies to all conversion callbacks */
  406. typedef CURLcode (*curl_conv_callback)(char *buffer, size_t length);
  407. typedef CURLcode (*curl_ssl_ctx_callback)(CURL *curl,    /* easy handle */
  408.                                           void *ssl_ctx, /* actually an
  409.                                                             OpenSSL SSL_CTX */
  410.                                           void *userptr);
  411. typedef enum {
  412.   CURLPROXY_HTTP = 0,   /* added in 7.10 */
  413.   CURLPROXY_SOCKS4 = 4, /* support added in 7.15.2, enum existed already
  414.                            in 7.10 */
  415.   CURLPROXY_SOCKS5 = 5, /* added in 7.10 */
  416.   CURLPROXY_SOCKS4A = 6, /* added in 7.18.0 */
  417.   CURLPROXY_SOCKS5_HOSTNAME = 7 /* Use the SOCKS5 protocol but pass along the
  418.                                    host name rather than the IP address. added
  419.                                    in 7.18.0 */
  420. } curl_proxytype;  /* this enum was added in 7.10 */
  421. #define CURLAUTH_NONE         0       /* nothing */
  422. #define CURLAUTH_BASIC        (1<<0)  /* Basic (default) */
  423. #define CURLAUTH_DIGEST       (1<<1)  /* Digest */
  424. #define CURLAUTH_GSSNEGOTIATE (1<<2)  /* GSS-Negotiate */
  425. #define CURLAUTH_NTLM         (1<<3)  /* NTLM */
  426. #define CURLAUTH_DIGEST_IE    (1<<4)  /* Digest with IE flavour */
  427. #define CURLAUTH_ANY (~CURLAUTH_DIGEST_IE)  /* all fine types set */
  428. #define CURLAUTH_ANYSAFE (~(CURLAUTH_BASIC|CURLAUTH_DIGEST_IE))
  429. #define CURLSSH_AUTH_ANY       ~0     /* all types supported by the server */
  430. #define CURLSSH_AUTH_NONE      0      /* none allowed, silly but complete */
  431. #define CURLSSH_AUTH_PUBLICKEY (1<<0) /* public/private key files */
  432. #define CURLSSH_AUTH_PASSWORD  (1<<1) /* password */
  433. #define CURLSSH_AUTH_HOST      (1<<2) /* host key files */
  434. #define CURLSSH_AUTH_KEYBOARD  (1<<3) /* keyboard interactive */
  435. #define CURLSSH_AUTH_DEFAULT CURLSSH_AUTH_ANY
  436. #define CURL_ERROR_SIZE 256
  437. /* parameter for the CURLOPT_USE_SSL option */
  438. typedef enum {
  439.   CURLUSESSL_NONE,    /* do not attempt to use SSL */
  440.   CURLUSESSL_TRY,     /* try using SSL, proceed anyway otherwise */
  441.   CURLUSESSL_CONTROL, /* SSL for the control connection or fail */
  442.   CURLUSESSL_ALL,     /* SSL for all communication or fail */
  443.   CURLUSESSL_LAST     /* not an option, never use */
  444. } curl_usessl;
  445. #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
  446.                           the obsolete stuff removed! */
  447. /* Backwards compatibility with older names */
  448. /* These are scheduled to disappear by 2009 */
  449. #define CURLFTPSSL_NONE CURLUSESSL_NONE
  450. #define CURLFTPSSL_TRY CURLUSESSL_TRY
  451. #define CURLFTPSSL_CONTROL CURLUSESSL_CONTROL
  452. #define CURLFTPSSL_ALL CURLUSESSL_ALL
  453. #define CURLFTPSSL_LAST CURLUSESSL_LAST
  454. #define curl_ftpssl curl_usessl
  455. #endif /*!CURL_NO_OLDIES*/
  456. /* parameter for the CURLOPT_FTP_SSL_CCC option */
  457. typedef enum {
  458.   CURLFTPSSL_CCC_NONE,    /* do not send CCC */
  459.   CURLFTPSSL_CCC_PASSIVE, /* Let the server initiate the shutdown */
  460.   CURLFTPSSL_CCC_ACTIVE,  /* Initiate the shutdown */
  461.   CURLFTPSSL_CCC_LAST     /* not an option, never use */
  462. } curl_ftpccc;
  463. /* parameter for the CURLOPT_FTPSSLAUTH option */
  464. typedef enum {
  465.   CURLFTPAUTH_DEFAULT, /* let libcurl decide */
  466.   CURLFTPAUTH_SSL,     /* use "AUTH SSL" */
  467.   CURLFTPAUTH_TLS,     /* use "AUTH TLS" */
  468.   CURLFTPAUTH_LAST /* not an option, never use */
  469. } curl_ftpauth;
  470. /* parameter for the CURLOPT_FTP_FILEMETHOD option */
  471. typedef enum {
  472.   CURLFTPMETHOD_DEFAULT,   /* let libcurl pick */
  473.   CURLFTPMETHOD_MULTICWD,  /* single CWD operation for each path part */
  474.   CURLFTPMETHOD_NOCWD,     /* no CWD at all */
  475.   CURLFTPMETHOD_SINGLECWD, /* one CWD to full dir, then work on file */
  476.   CURLFTPMETHOD_LAST       /* not an option, never use */
  477. } curl_ftpmethod;
  478. /* long may be 32 or 64 bits, but we should never depend on anything else
  479.    but 32 */
  480. #define CURLOPTTYPE_LONG          0
  481. #define CURLOPTTYPE_OBJECTPOINT   10000
  482. #define CURLOPTTYPE_FUNCTIONPOINT 20000
  483. #define CURLOPTTYPE_OFF_T         30000
  484. /* name is uppercase CURLOPT_<name>,
  485.    type is one of the defined CURLOPTTYPE_<type>
  486.    number is unique identifier */
  487. #ifdef CINIT
  488. #undef CINIT
  489. #endif
  490. #ifdef CURL_ISOCPP
  491. #define CINIT(name,type,number) CURLOPT_ ## name = CURLOPTTYPE_ ## type + number
  492. #else
  493. /* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */
  494. #define LONG          CURLOPTTYPE_LONG
  495. #define OBJECTPOINT   CURLOPTTYPE_OBJECTPOINT
  496. #define FUNCTIONPOINT CURLOPTTYPE_FUNCTIONPOINT
  497. #define OFF_T         CURLOPTTYPE_OFF_T
  498. #define CINIT(name,type,number) CURLOPT_/**/name = type + number
  499. #endif
  500. /*
  501.  * This macro-mania below setups the CURLOPT_[what] enum, to be used with
  502.  * curl_easy_setopt(). The first argument in the CINIT() macro is the [what]
  503.  * word.
  504.  */
  505. typedef enum {
  506.   /* This is the FILE * or void * the regular output should be written to. */
  507.   CINIT(FILE, OBJECTPOINT, 1),
  508.   /* The full URL to get/put */
  509.   CINIT(URL,  OBJECTPOINT, 2),
  510.   /* Port number to connect to, if other than default. */
  511.   CINIT(PORT, LONG, 3),
  512.   /* Name of proxy to use. */
  513.   CINIT(PROXY, OBJECTPOINT, 4),
  514.   /* "name:password" to use when fetching. */
  515.   CINIT(USERPWD, OBJECTPOINT, 5),
  516.   /* "name:password" to use with proxy. */
  517.   CINIT(PROXYUSERPWD, OBJECTPOINT, 6),
  518.   /* Range to get, specified as an ASCII string. */
  519.   CINIT(RANGE, OBJECTPOINT, 7),
  520.   /* not used */
  521.   /* Specified file stream to upload from (use as input): */
  522.   CINIT(INFILE, OBJECTPOINT, 9),
  523.   /* Buffer to receive error messages in, must be at least CURL_ERROR_SIZE
  524.    * bytes big. If this is not used, error messages go to stderr instead: */
  525.   CINIT(ERRORBUFFER, OBJECTPOINT, 10),
  526.   /* Function that will be called to store the output (instead of fwrite). The
  527.    * parameters will use fwrite() syntax, make sure to follow them. */
  528.   CINIT(WRITEFUNCTION, FUNCTIONPOINT, 11),
  529.   /* Function that will be called to read the input (instead of fread). The
  530.    * parameters will use fread() syntax, make sure to follow them. */
  531.   CINIT(READFUNCTION, FUNCTIONPOINT, 12),
  532.   /* Time-out the read operation after this amount of seconds */
  533.   CINIT(TIMEOUT, LONG, 13),
  534.   /* If the CURLOPT_INFILE is used, this can be used to inform libcurl about
  535.    * how large the file being sent really is. That allows better error
  536.    * checking and better verifies that the upload was successful. -1 means
  537.    * unknown size.
  538.    *
  539.    * For large file support, there is also a _LARGE version of the key
  540.    * which takes an off_t type, allowing platforms with larger off_t
  541.    * sizes to handle larger files.  See below for INFILESIZE_LARGE.
  542.    */
  543.   CINIT(INFILESIZE, LONG, 14),
  544.   /* POST static input fields. */
  545.   CINIT(POSTFIELDS, OBJECTPOINT, 15),
  546.   /* Set the referrer page (needed by some CGIs) */
  547.   CINIT(REFERER, OBJECTPOINT, 16),
  548.   /* Set the FTP PORT string (interface name, named or numerical IP address)
  549.      Use i.e '-' to use default address. */
  550.   CINIT(FTPPORT, OBJECTPOINT, 17),
  551.   /* Set the User-Agent string (examined by some CGIs) */
  552.   CINIT(USERAGENT, OBJECTPOINT, 18),
  553.   /* If the download receives less than "low speed limit" bytes/second
  554.    * during "low speed time" seconds, the operations is aborted.
  555.    * You could i.e if you have a pretty high speed connection, abort if
  556.    * it is less than 2000 bytes/sec during 20 seconds.
  557.    */
  558.   /* Set the "low speed limit" */
  559.   CINIT(LOW_SPEED_LIMIT, LONG, 19),
  560.   /* Set the "low speed time" */
  561.   CINIT(LOW_SPEED_TIME, LONG, 20),
  562.   /* Set the continuation offset.
  563.    *
  564.    * Note there is also a _LARGE version of this key which uses
  565.    * off_t types, allowing for large file offsets on platforms which
  566.    * use larger-than-32-bit off_t's.  Look below for RESUME_FROM_LARGE.
  567.    */
  568.   CINIT(RESUME_FROM, LONG, 21),
  569.   /* Set cookie in request: */
  570.   CINIT(COOKIE, OBJECTPOINT, 22),
  571.   /* This points to a linked list of headers, struct curl_slist kind */
  572.   CINIT(HTTPHEADER, OBJECTPOINT, 23),
  573.   /* This points to a linked list of post entries, struct curl_httppost */
  574.   CINIT(HTTPPOST, OBJECTPOINT, 24),
  575.   /* name of the file keeping your private SSL-certificate */
  576.   CINIT(SSLCERT, OBJECTPOINT, 25),
  577.   /* password for the SSL or SSH private key */
  578.   CINIT(KEYPASSWD, OBJECTPOINT, 26),
  579.   /* send TYPE parameter? */
  580.   CINIT(CRLF, LONG, 27),
  581.   /* send linked-list of QUOTE commands */
  582.   CINIT(QUOTE, OBJECTPOINT, 28),
  583.   /* send FILE * or void * to store headers to, if you use a callback it
  584.      is simply passed to the callback unmodified */
  585.   CINIT(WRITEHEADER, OBJECTPOINT, 29),
  586.   /* point to a file to read the initial cookies from, also enables
  587.      "cookie awareness" */
  588.   CINIT(COOKIEFILE, OBJECTPOINT, 31),
  589.   /* What version to specifically try to use.
  590.      See CURL_SSLVERSION defines below. */
  591.   CINIT(SSLVERSION, LONG, 32),
  592.   /* What kind of HTTP time condition to use, see defines */
  593.   CINIT(TIMECONDITION, LONG, 33),
  594.   /* Time to use with the above condition. Specified in number of seconds
  595.      since 1 Jan 1970 */
  596.   CINIT(TIMEVALUE, LONG, 34),
  597.   /* 35 = OBSOLETE */
  598.   /* Custom request, for customizing the get command like
  599.      HTTP: DELETE, TRACE and others
  600.      FTP: to use a different list command
  601.      */
  602.   CINIT(CUSTOMREQUEST, OBJECTPOINT, 36),
  603.   /* HTTP request, for odd commands like DELETE, TRACE and others */
  604.   CINIT(STDERR, OBJECTPOINT, 37),
  605.   /* 38 is not used */
  606.   /* send linked-list of post-transfer QUOTE commands */
  607.   CINIT(POSTQUOTE, OBJECTPOINT, 39),
  608.   /* Pass a pointer to string of the output using full variable-replacement
  609.      as described elsewhere. */
  610.   CINIT(WRITEINFO, OBJECTPOINT, 40),
  611.   CINIT(VERBOSE, LONG, 41),      /* talk a lot */
  612.   CINIT(HEADER, LONG, 42),       /* throw the header out too */
  613.   CINIT(NOPROGRESS, LONG, 43),   /* shut off the progress meter */
  614.   CINIT(NOBODY, LONG, 44),       /* use HEAD to get http document */
  615.   CINIT(FAILONERROR, LONG, 45),  /* no output on http error codes >= 300 */
  616.   CINIT(UPLOAD, LONG, 46),       /* this is an upload */
  617.   CINIT(POST, LONG, 47),         /* HTTP POST method */
  618.   CINIT(DIRLISTONLY, LONG, 48),  /* return bare names when listing directories */
  619.   CINIT(APPEND, LONG, 50),       /* Append instead of overwrite on upload! */
  620.   /* Specify whether to read the user+password from the .netrc or the URL.
  621.    * This must be one of the CURL_NETRC_* enums below. */
  622.   CINIT(NETRC, LONG, 51),
  623.   CINIT(FOLLOWLOCATION, LONG, 52),  /* use Location: Luke! */
  624.   CINIT(TRANSFERTEXT, LONG, 53), /* transfer data in text/ASCII format */
  625.   CINIT(PUT, LONG, 54),          /* HTTP PUT */
  626.   /* 55 = OBSOLETE */
  627.   /* Function that will be called instead of the internal progress display
  628.    * function. This function should be defined as the curl_progress_callback
  629.    * prototype defines. */
  630.   CINIT(PROGRESSFUNCTION, FUNCTIONPOINT, 56),
  631.   /* Data passed to the progress callback */
  632.   CINIT(PROGRESSDATA, OBJECTPOINT, 57),
  633.   /* We want the referrer field set automatically when following locations */
  634.   CINIT(AUTOREFERER, LONG, 58),
  635.   /* Port of the proxy, can be set in the proxy string as well with:
  636.      "[host]:[port]" */
  637.   CINIT(PROXYPORT, LONG, 59),
  638.   /* size of the POST input data, if strlen() is not good to use */
  639.   CINIT(POSTFIELDSIZE, LONG, 60),
  640.   /* tunnel non-http operations through a HTTP proxy */
  641.   CINIT(HTTPPROXYTUNNEL, LONG, 61),
  642.   /* Set the interface string to use as outgoing network interface */
  643.   CINIT(INTERFACE, OBJECTPOINT, 62),
  644.   /* Set the krb4/5 security level, this also enables krb4/5 awareness.  This
  645.    * is a string, 'clear', 'safe', 'confidential' or 'private'.  If the string
  646.    * is set but doesn't match one of these, 'private' will be used.  */
  647.   CINIT(KRBLEVEL, OBJECTPOINT, 63),
  648.   /* Set if we should verify the peer in ssl handshake, set 1 to verify. */
  649.   CINIT(SSL_VERIFYPEER, LONG, 64),
  650.   /* The CApath or CAfile used to validate the peer certificate
  651.      this option is used only if SSL_VERIFYPEER is true */
  652.   CINIT(CAINFO, OBJECTPOINT, 65),
  653.   /* 66 = OBSOLETE */
  654.   /* 67 = OBSOLETE */
  655.   /* Maximum number of http redirects to follow */
  656.   CINIT(MAXREDIRS, LONG, 68),
  657.   /* Pass a long set to 1 to get the date of the requested document (if
  658.      possible)! Pass a zero to shut it off. */
  659.   CINIT(FILETIME, LONG, 69),
  660.   /* This points to a linked list of telnet options */
  661.   CINIT(TELNETOPTIONS, OBJECTPOINT, 70),
  662.   /* Max amount of cached alive connections */
  663.   CINIT(MAXCONNECTS, LONG, 71),
  664.   /* What policy to use when closing connections when the cache is filled
  665.      up */
  666.   CINIT(CLOSEPOLICY, LONG, 72),
  667.   /* 73 = OBSOLETE */
  668.   /* Set to explicitly use a new connection for the upcoming transfer.
  669.      Do not use this unless you're absolutely sure of this, as it makes the
  670.      operation slower and is less friendly for the network. */
  671.   CINIT(FRESH_CONNECT, LONG, 74),
  672.   /* Set to explicitly forbid the upcoming transfer's connection to be re-used
  673.      when done. Do not use this unless you're absolutely sure of this, as it
  674.      makes the operation slower and is less friendly for the network. */
  675.   CINIT(FORBID_REUSE, LONG, 75),
  676.   /* Set to a file name that contains random data for libcurl to use to
  677.      seed the random engine when doing SSL connects. */
  678.   CINIT(RANDOM_FILE, OBJECTPOINT, 76),
  679.   /* Set to the Entropy Gathering Daemon socket pathname */
  680.   CINIT(EGDSOCKET, OBJECTPOINT, 77),
  681.   /* Time-out connect operations after this amount of seconds, if connects
  682.      are OK within this time, then fine... This only aborts the connect
  683.      phase. [Only works on unix-style/SIGALRM operating systems] */
  684.   CINIT(CONNECTTIMEOUT, LONG, 78),
  685.   /* Function that will be called to store headers (instead of fwrite). The
  686.    * parameters will use fwrite() syntax, make sure to follow them. */
  687.   CINIT(HEADERFUNCTION, FUNCTIONPOINT, 79),
  688.   /* Set this to force the HTTP request to get back to GET. Only really usable
  689.      if POST, PUT or a custom request have been used first.
  690.    */
  691.   CINIT(HTTPGET, LONG, 80),
  692.   /* Set if we should verify the Common name from the peer certificate in ssl
  693.    * handshake, set 1 to check existence, 2 to ensure that it matches the
  694.    * provided hostname. */
  695.   CINIT(SSL_VERIFYHOST, LONG, 81),
  696.   /* Specify which file name to write all known cookies in after completed
  697.      operation. Set file name to "-" (dash) to make it go to stdout. */
  698.   CINIT(COOKIEJAR, OBJECTPOINT, 82),
  699.   /* Specify which SSL ciphers to use */
  700.   CINIT(SSL_CIPHER_LIST, OBJECTPOINT, 83),
  701.   /* Specify which HTTP version to use! This must be set to one of the
  702.      CURL_HTTP_VERSION* enums set below. */
  703.   CINIT(HTTP_VERSION, LONG, 84),
  704.   /* Specifically switch on or off the FTP engine's use of the EPSV command. By
  705.      default, that one will always be attempted before the more traditional
  706.      PASV command. */
  707.   CINIT(FTP_USE_EPSV, LONG, 85),
  708.   /* type of the file keeping your SSL-certificate ("DER", "PEM", "ENG") */
  709.   CINIT(SSLCERTTYPE, OBJECTPOINT, 86),
  710.   /* name of the file keeping your private SSL-key */
  711.   CINIT(SSLKEY, OBJECTPOINT, 87),
  712.   /* type of the file keeping your private SSL-key ("DER", "PEM", "ENG") */
  713.   CINIT(SSLKEYTYPE, OBJECTPOINT, 88),
  714.   /* crypto engine for the SSL-sub system */
  715.   CINIT(SSLENGINE, OBJECTPOINT, 89),
  716.   /* set the crypto engine for the SSL-sub system as default
  717.      the param has no meaning...
  718.    */
  719.   CINIT(SSLENGINE_DEFAULT, LONG, 90),
  720.   /* Non-zero value means to use the global dns cache */
  721.   CINIT(DNS_USE_GLOBAL_CACHE, LONG, 91), /* To become OBSOLETE soon */
  722.   /* DNS cache timeout */
  723.   CINIT(DNS_CACHE_TIMEOUT, LONG, 92),
  724.   /* send linked-list of pre-transfer QUOTE commands (Wesley Laxton)*/
  725.   CINIT(PREQUOTE, OBJECTPOINT, 93),
  726.   /* set the debug function */
  727.   CINIT(DEBUGFUNCTION, FUNCTIONPOINT, 94),
  728.   /* set the data for the debug function */
  729.   CINIT(DEBUGDATA, OBJECTPOINT, 95),
  730.   /* mark this as start of a cookie session */
  731.   CINIT(COOKIESESSION, LONG, 96),
  732.   /* The CApath directory used to validate the peer certificate
  733.      this option is used only if SSL_VERIFYPEER is true */
  734.   CINIT(CAPATH, OBJECTPOINT, 97),
  735.   /* Instruct libcurl to use a smaller receive buffer */
  736.   CINIT(BUFFERSIZE, LONG, 98),
  737.   /* Instruct libcurl to not use any signal/alarm handlers, even when using
  738.      timeouts. This option is useful for multi-threaded applications.
  739.      See libcurl-the-guide for more background information. */
  740.   CINIT(NOSIGNAL, LONG, 99),
  741.   /* Provide a CURLShare for mutexing non-ts data */
  742.   CINIT(SHARE, OBJECTPOINT, 100),
  743.   /* indicates type of proxy. accepted values are CURLPROXY_HTTP (default),
  744.      CURLPROXY_SOCKS4, CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5. */
  745.   CINIT(PROXYTYPE, LONG, 101),
  746.   /* Set the Accept-Encoding string. Use this to tell a server you would like
  747.      the response to be compressed. */
  748.   CINIT(ENCODING, OBJECTPOINT, 102),
  749.   /* Set pointer to private data */
  750.   CINIT(PRIVATE, OBJECTPOINT, 103),
  751.   /* Set aliases for HTTP 200 in the HTTP Response header */
  752.   CINIT(HTTP200ALIASES, OBJECTPOINT, 104),
  753.   /* Continue to send authentication (user+password) when following locations,
  754.      even when hostname changed. This can potentially send off the name
  755.      and password to whatever host the server decides. */
  756.   CINIT(UNRESTRICTED_AUTH, LONG, 105),
  757.   /* Specifically switch on or off the FTP engine's use of the EPRT command ( it
  758.      also disables the LPRT attempt). By default, those ones will always be
  759.      attempted before the good old traditional PORT command. */
  760.   CINIT(FTP_USE_EPRT, LONG, 106),
  761.   /* Set this to a bitmask value to enable the particular authentications
  762.      methods you like. Use this in combination with CURLOPT_USERPWD.
  763.      Note that setting multiple bits may cause extra network round-trips. */
  764.   CINIT(HTTPAUTH, LONG, 107),
  765.   /* Set the ssl context callback function, currently only for OpenSSL ssl_ctx
  766.      in second argument. The function must be matching the
  767.      curl_ssl_ctx_callback proto. */
  768.   CINIT(SSL_CTX_FUNCTION, FUNCTIONPOINT, 108),
  769.   /* Set the userdata for the ssl context callback function's third
  770.      argument */
  771.   CINIT(SSL_CTX_DATA, OBJECTPOINT, 109),
  772.   /* FTP Option that causes missing dirs to be created on the remote server */
  773.   CINIT(FTP_CREATE_MISSING_DIRS, LONG, 110),
  774.   /* Set this to a bitmask value to enable the particular authentications
  775.      methods you like. Use this in combination with CURLOPT_PROXYUSERPWD.
  776.      Note that setting multiple bits may cause extra network round-trips. */
  777.   CINIT(PROXYAUTH, LONG, 111),
  778.   /* FTP option that changes the timeout, in seconds, associated with
  779.      getting a response.  This is different from transfer timeout time and
  780.      essentially places a demand on the FTP server to acknowledge commands
  781.      in a timely manner. */
  782.   CINIT(FTP_RESPONSE_TIMEOUT, LONG, 112),
  783.   /* Set this option to one of the CURL_IPRESOLVE_* defines (see below) to
  784.      tell libcurl to resolve names to those IP versions only. This only has
  785.      affect on systems with support for more than one, i.e IPv4 _and_ IPv6. */
  786.   CINIT(IPRESOLVE, LONG, 113),
  787.   /* Set this option to limit the size of a file that will be downloaded from
  788.      an HTTP or FTP server.
  789.      Note there is also _LARGE version which adds large file support for
  790.      platforms which have larger off_t sizes.  See MAXFILESIZE_LARGE below. */
  791.   CINIT(MAXFILESIZE, LONG, 114),
  792.   /* See the comment for INFILESIZE above, but in short, specifies
  793.    * the size of the file being uploaded.  -1 means unknown.
  794.    */
  795.   CINIT(INFILESIZE_LARGE, OFF_T, 115),
  796.   /* Sets the continuation offset.  There is also a LONG version of this;
  797.    * look above for RESUME_FROM.
  798.    */
  799.   CINIT(RESUME_FROM_LARGE, OFF_T, 116),
  800.   /* Sets the maximum size of data that will be downloaded from
  801.    * an HTTP or FTP server.  See MAXFILESIZE above for the LONG version.
  802.    */
  803.   CINIT(MAXFILESIZE_LARGE, OFF_T, 117),
  804.   /* Set this option to the file name of your .netrc file you want libcurl
  805.      to parse (using the CURLOPT_NETRC option). If not set, libcurl will do
  806.      a poor attempt to find the user's home directory and check for a .netrc
  807.      file in there. */
  808.   CINIT(NETRC_FILE, OBJECTPOINT, 118),
  809.   /* Enable SSL/TLS for FTP, pick one of:
  810.      CURLFTPSSL_TRY     - try using SSL, proceed anyway otherwise
  811.      CURLFTPSSL_CONTROL - SSL for the control connection or fail
  812.      CURLFTPSSL_ALL     - SSL for all communication or fail
  813.   */
  814.   CINIT(USE_SSL, LONG, 119),
  815.   /* The _LARGE version of the standard POSTFIELDSIZE option */
  816.   CINIT(POSTFIELDSIZE_LARGE, OFF_T, 120),
  817.   /* Enable/disable the TCP Nagle algorithm */
  818.   CINIT(TCP_NODELAY, LONG, 121),
  819.   /* 122 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
  820.   /* 123 OBSOLETE. Gone in 7.16.0 */
  821.   /* 124 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
  822.   /* 125 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
  823.   /* 126 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */
  824.   /* 127 OBSOLETE. Gone in 7.16.0 */
  825.   /* 128 OBSOLETE. Gone in 7.16.0 */
  826.   /* When FTP over SSL/TLS is selected (with CURLOPT_USE_SSL), this option
  827.      can be used to change libcurl's default action which is to first try
  828.      "AUTH SSL" and then "AUTH TLS" in this order, and proceed when a OK
  829.      response has been received.
  830.      Available parameters are:
  831.      CURLFTPAUTH_DEFAULT - let libcurl decide
  832.      CURLFTPAUTH_SSL     - try "AUTH SSL" first, then TLS
  833.      CURLFTPAUTH_TLS     - try "AUTH TLS" first, then SSL
  834.   */
  835.   CINIT(FTPSSLAUTH, LONG, 129),
  836.   CINIT(IOCTLFUNCTION, FUNCTIONPOINT, 130),
  837.   CINIT(IOCTLDATA, OBJECTPOINT, 131),
  838.   /* 132 OBSOLETE. Gone in 7.16.0 */
  839.   /* 133 OBSOLETE. Gone in 7.16.0 */
  840.   /* zero terminated string for pass on to the FTP server when asked for
  841.      "account" info */
  842.   CINIT(FTP_ACCOUNT, OBJECTPOINT, 134),
  843.   /* feed cookies into cookie engine */
  844.   CINIT(COOKIELIST, OBJECTPOINT, 135),
  845.   /* ignore Content-Length */
  846.   CINIT(IGNORE_CONTENT_LENGTH, LONG, 136),
  847.   /* Set to non-zero to skip the IP address received in a 227 PASV FTP server
  848.      response. Typically used for FTP-SSL purposes but is not restricted to
  849.      that. libcurl will then instead use the same IP address it used for the
  850.      control connection. */
  851.   CINIT(FTP_SKIP_PASV_IP, LONG, 137),
  852.   /* Select "file method" to use when doing FTP, see the curl_ftpmethod
  853.      above. */
  854.   CINIT(FTP_FILEMETHOD, LONG, 138),
  855.   /* Local port number to bind the socket to */
  856.   CINIT(LOCALPORT, LONG, 139),
  857.   /* Number of ports to try, including the first one set with LOCALPORT.
  858.      Thus, setting it to 1 will make no additional attempts but the first.
  859.   */
  860.   CINIT(LOCALPORTRANGE, LONG, 140),
  861.   /* no transfer, set up connection and let application use the socket by
  862.      extracting it with CURLINFO_LASTSOCKET */
  863.   CINIT(CONNECT_ONLY, LONG, 141),
  864.   /* Function that will be called to convert from the
  865.      network encoding (instead of using the iconv calls in libcurl) */
  866.   CINIT(CONV_FROM_NETWORK_FUNCTION, FUNCTIONPOINT, 142),
  867.   /* Function that will be called to convert to the
  868.      network encoding (instead of using the iconv calls in libcurl) */
  869.   CINIT(CONV_TO_NETWORK_FUNCTION, FUNCTIONPOINT, 143),
  870.   /* Function that will be called to convert from UTF8
  871.      (instead of using the iconv calls in libcurl)
  872.      Note that this is used only for SSL certificate processing */
  873.   CINIT(CONV_FROM_UTF8_FUNCTION, FUNCTIONPOINT, 144),
  874.   /* if the connection proceeds too quickly then need to slow it down */
  875.   /* limit-rate: maximum number of bytes per second to send or receive */
  876.   CINIT(MAX_SEND_SPEED_LARGE, OFF_T, 145),
  877.   CINIT(MAX_RECV_SPEED_LARGE, OFF_T, 146),
  878.   /* Pointer to command string to send if USER/PASS fails. */
  879.   CINIT(FTP_ALTERNATIVE_TO_USER, OBJECTPOINT, 147),
  880.   /* callback function for setting socket options */
  881.   CINIT(SOCKOPTFUNCTION, FUNCTIONPOINT, 148),
  882.   CINIT(SOCKOPTDATA, OBJECTPOINT, 149),
  883.   /* set to 0 to disable session ID re-use for this transfer, default is
  884.      enabled (== 1) */
  885.   CINIT(SSL_SESSIONID_CACHE, LONG, 150),
  886.   /* allowed SSH authentication methods */
  887.   CINIT(SSH_AUTH_TYPES, LONG, 151),
  888.   /* Used by scp/sftp to do public/private key authentication */
  889.   CINIT(SSH_PUBLIC_KEYFILE, OBJECTPOINT, 152),
  890.   CINIT(SSH_PRIVATE_KEYFILE, OBJECTPOINT, 153),
  891.   /* Send CCC (Clear Command Channel) after authentication */
  892.   CINIT(FTP_SSL_CCC, LONG, 154),
  893.   /* Same as TIMEOUT and CONNECTTIMEOUT, but with ms resolution */
  894.   CINIT(TIMEOUT_MS, LONG, 155),
  895.   CINIT(CONNECTTIMEOUT_MS, LONG, 156),
  896.   /* set to zero to disable the libcurl's decoding and thus pass the raw body
  897.      data to the application even when it is encoded/compressed */
  898.   CINIT(HTTP_TRANSFER_DECODING, LONG, 157),
  899.   CINIT(HTTP_CONTENT_DECODING, LONG, 158),
  900.   /* Permission used when creating new files and directories on the remote
  901.      server for protocols that support it, SFTP/SCP/FILE */
  902.   CINIT(NEW_FILE_PERMS, LONG, 159),
  903.   CINIT(NEW_DIRECTORY_PERMS, LONG, 160),
  904.   /* Set the behaviour of POST when redirecting. Values must be set to one
  905.      of CURL_REDIR* defines below. This used to be called CURLOPT_POST301 */
  906.   CINIT(POSTREDIR, LONG, 161),
  907.   /* used by scp/sftp to verify the host's public key */
  908.   CINIT(SSH_HOST_PUBLIC_KEY_MD5, OBJECTPOINT, 162),
  909.   /* Callback function for opening socket (instead of socket(2)). Optionally,
  910.      callback is able change the address or refuse to connect returning
  911.      CURL_SOCKET_BAD.  The callback should have type
  912.      curl_opensocket_callback */
  913.   CINIT(OPENSOCKETFUNCTION, FUNCTIONPOINT, 163),
  914.   CINIT(OPENSOCKETDATA, OBJECTPOINT, 164),
  915.   /* POST volatile input fields. */
  916.   CINIT(COPYPOSTFIELDS, OBJECTPOINT, 165),
  917.   /* set transfer mode (;type=<a|i>) when doing FTP via an HTTP proxy */
  918.   CINIT(PROXY_TRANSFER_MODE, LONG, 166),
  919.   /* Callback function for seeking in the input stream */
  920.   CINIT(SEEKFUNCTION, FUNCTIONPOINT, 167),
  921.   CINIT(SEEKDATA, OBJECTPOINT, 168),
  922.   /* CRL file */
  923.   CINIT(CRLFILE, OBJECTPOINT, 169),
  924.   /* Issuer certificate */
  925.   CINIT(ISSUERCERT, OBJECTPOINT, 170),
  926.   /* (IPv6) Address scope */
  927.   CINIT(ADDRESS_SCOPE, LONG, 171),
  928.   /* Collect certificate chain info and allow it to get retrievable with
  929.      CURLINFO_CERTINFO after the transfer is complete. (Unfortunately) only
  930.      working with OpenSSL-powered builds. */
  931.   CINIT(CERTINFO, LONG, 172),
  932.   /* "name" and "pwd" to use when fetching. */
  933.   CINIT(USERNAME, OBJECTPOINT, 173),
  934.   CINIT(PASSWORD, OBJECTPOINT, 174),
  935.     /* "name" and "pwd" to use with Proxy when fetching. */
  936.   CINIT(PROXYUSERNAME, OBJECTPOINT, 175),
  937.   CINIT(PROXYPASSWORD, OBJECTPOINT, 176),
  938.   CURLOPT_LASTENTRY /* the last unused */
  939. } CURLoption;
  940. #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
  941.                           the obsolete stuff removed! */
  942. /* Backwards compatibility with older names */
  943. /* These are scheduled to disappear by 2011 */
  944. /* This was added in version 7.19.1 */
  945. #define CURLOPT_POST301 CURLOPT_POSTREDIR
  946. /* These are scheduled to disappear by 2009 */
  947. /* The following were added in 7.17.0 */
  948. #define CURLOPT_SSLKEYPASSWD CURLOPT_KEYPASSWD
  949. #define CURLOPT_FTPAPPEND CURLOPT_APPEND
  950. #define CURLOPT_FTPLISTONLY CURLOPT_DIRLISTONLY
  951. #define CURLOPT_FTP_SSL CURLOPT_USE_SSL
  952. /* The following were added earlier */
  953. #define CURLOPT_SSLCERTPASSWD CURLOPT_KEYPASSWD
  954. #define CURLOPT_KRB4LEVEL CURLOPT_KRBLEVEL
  955. #else
  956. /* This is set if CURL_NO_OLDIES is defined at compile-time */
  957. #undef CURLOPT_DNS_USE_GLOBAL_CACHE /* soon obsolete */
  958. #endif
  959.   /* Below here follows defines for the CURLOPT_IPRESOLVE option. If a host
  960.      name resolves addresses using more than one IP protocol version, this
  961.      option might be handy to force libcurl to use a specific IP version. */
  962. #define CURL_IPRESOLVE_WHATEVER 0 /* default, resolves addresses to all IP
  963.                                      versions that your system allows */
  964. #define CURL_IPRESOLVE_V4       1 /* resolve to ipv4 addresses */
  965. #define CURL_IPRESOLVE_V6       2 /* resolve to ipv6 addresses */
  966.   /* three convenient "aliases" that follow the name scheme better */
  967. #define CURLOPT_WRITEDATA CURLOPT_FILE
  968. #define CURLOPT_READDATA  CURLOPT_INFILE
  969. #define CURLOPT_HEADERDATA CURLOPT_WRITEHEADER
  970.   /* These enums are for use with the CURLOPT_HTTP_VERSION option. */
  971. enum {
  972.   CURL_HTTP_VERSION_NONE, /* setting this means we don't care, and that we'd
  973.                              like the library to choose the best possible
  974.                              for us! */
  975.   CURL_HTTP_VERSION_1_0,  /* please use HTTP 1.0 in the request */
  976.   CURL_HTTP_VERSION_1_1,  /* please use HTTP 1.1 in the request */
  977.   CURL_HTTP_VERSION_LAST /* *ILLEGAL* http version */
  978. };
  979.   /* These enums are for use with the CURLOPT_NETRC option. */
  980. enum CURL_NETRC_OPTION {
  981.   CURL_NETRC_IGNORED,     /* The .netrc will never be read.
  982.                            * This is the default. */
  983.   CURL_NETRC_OPTIONAL,    /* A user:password in the URL will be preferred
  984.                            * to one in the .netrc. */
  985.   CURL_NETRC_REQUIRED,    /* A user:password in the URL will be ignored.
  986.                            * Unless one is set programmatically, the .netrc
  987.                            * will be queried. */
  988.   CURL_NETRC_LAST
  989. };
  990. enum {
  991.   CURL_SSLVERSION_DEFAULT,
  992.   CURL_SSLVERSION_TLSv1,
  993.   CURL_SSLVERSION_SSLv2,
  994.   CURL_SSLVERSION_SSLv3,
  995.   CURL_SSLVERSION_LAST /* never use, keep last */
  996. };
  997. /* symbols to use with CURLOPT_POSTREDIR.
  998.    CURL_REDIR_POST_301 and CURL_REDIR_POST_302 can be bitwise ORed so that
  999.    CURL_REDIR_POST_301 | CURL_REDIR_POST_302 == CURL_REDIR_POST_ALL */
  1000. #define CURL_REDIR_GET_ALL  0
  1001. #define CURL_REDIR_POST_301 1
  1002. #define CURL_REDIR_POST_302 2
  1003. #define CURL_REDIR_POST_ALL (CURL_REDIR_POST_301|CURL_REDIR_POST_302)
  1004. typedef enum {
  1005.   CURL_TIMECOND_NONE,
  1006.   CURL_TIMECOND_IFMODSINCE,
  1007.   CURL_TIMECOND_IFUNMODSINCE,
  1008.   CURL_TIMECOND_LASTMOD,
  1009.   CURL_TIMECOND_LAST
  1010. } curl_TimeCond;
  1011. /* curl_strequal() and curl_strnequal() are subject for removal in a future
  1012.    libcurl, see lib/README.curlx for details */
  1013. CURL_EXTERN int (curl_strequal)(const char *s1, const char *s2);
  1014. CURL_EXTERN int (curl_strnequal)(const char *s1, const char *s2, size_t n);
  1015. /* name is uppercase CURLFORM_<name> */
  1016. #ifdef CFINIT
  1017. #undef CFINIT
  1018. #endif
  1019. #ifdef CURL_ISOCPP
  1020. #define CFINIT(name) CURLFORM_ ## name
  1021. #else
  1022. /* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */
  1023. #define CFINIT(name) CURLFORM_/**/name
  1024. #endif
  1025. typedef enum {
  1026.   CFINIT(NOTHING),        /********* the first one is unused ************/
  1027.   /*  */
  1028.   CFINIT(COPYNAME),
  1029.   CFINIT(PTRNAME),
  1030.   CFINIT(NAMELENGTH),
  1031.   CFINIT(COPYCONTENTS),
  1032.   CFINIT(PTRCONTENTS),
  1033.   CFINIT(CONTENTSLENGTH),
  1034.   CFINIT(FILECONTENT),
  1035.   CFINIT(ARRAY),
  1036.   CFINIT(OBSOLETE),
  1037.   CFINIT(FILE),
  1038.   CFINIT(BUFFER),
  1039.   CFINIT(BUFFERPTR),
  1040.   CFINIT(BUFFERLENGTH),
  1041.   CFINIT(CONTENTTYPE),
  1042.   CFINIT(CONTENTHEADER),
  1043.   CFINIT(FILENAME),
  1044.   CFINIT(END),
  1045.   CFINIT(OBSOLETE2),
  1046.   CFINIT(STREAM),
  1047.   CURLFORM_LASTENTRY /* the last unused */
  1048. } CURLformoption;
  1049. #undef CFINIT /* done */
  1050. /* structure to be used as parameter for CURLFORM_ARRAY */
  1051. struct curl_forms {
  1052.   CURLformoption option;
  1053.   const char     *value;
  1054. };
  1055. /* use this for multipart formpost building */
  1056. /* Returns code for curl_formadd()
  1057.  *
  1058.  * Returns:
  1059.  * CURL_FORMADD_OK             on success
  1060.  * CURL_FORMADD_MEMORY         if the FormInfo allocation fails
  1061.  * CURL_FORMADD_OPTION_TWICE   if one option is given twice for one Form
  1062.  * CURL_FORMADD_NULL           if a null pointer was given for a char
  1063.  * CURL_FORMADD_MEMORY         if the allocation of a FormInfo struct failed
  1064.  * CURL_FORMADD_UNKNOWN_OPTION if an unknown option was used
  1065.  * CURL_FORMADD_INCOMPLETE     if the some FormInfo is not complete (or error)
  1066.  * CURL_FORMADD_MEMORY         if a curl_httppost struct cannot be allocated
  1067.  * CURL_FORMADD_MEMORY         if some allocation for string copying failed.
  1068.  * CURL_FORMADD_ILLEGAL_ARRAY  if an illegal option is used in an array
  1069.  *
  1070.  ***************************************************************************/
  1071. typedef enum {
  1072.   CURL_FORMADD_OK, /* first, no error */
  1073.   CURL_FORMADD_MEMORY,
  1074.   CURL_FORMADD_OPTION_TWICE,
  1075.   CURL_FORMADD_NULL,
  1076.   CURL_FORMADD_UNKNOWN_OPTION,
  1077.   CURL_FORMADD_INCOMPLETE,
  1078.   CURL_FORMADD_ILLEGAL_ARRAY,
  1079.   CURL_FORMADD_DISABLED, /* libcurl was built with this disabled */
  1080.   CURL_FORMADD_LAST /* last */
  1081. } CURLFORMcode;
  1082. /*
  1083.  * NAME curl_formadd()
  1084.  *
  1085.  * DESCRIPTION
  1086.  *
  1087.  * Pretty advanced function for building multi-part formposts. Each invoke
  1088.  * adds one part that together construct a full post. Then use
  1089.  * CURLOPT_HTTPPOST to send it off to libcurl.
  1090.  */
  1091. CURL_EXTERN CURLFORMcode curl_formadd(struct curl_httppost **httppost,
  1092.                                       struct curl_httppost **last_post,
  1093.                                       ...);
  1094. /*
  1095.  * callback function for curl_formget()
  1096.  * The void *arg pointer will be the one passed as second argument to
  1097.  *   curl_formget().
  1098.  * The character buffer passed to it must not be freed.
  1099.  * Should return the buffer length passed to it as the argument "len" on
  1100.  *   success.
  1101.  */
  1102. typedef size_t (*curl_formget_callback)(void *arg, const char *buf, size_t len);
  1103. /*
  1104.  * NAME curl_formget()
  1105.  *
  1106.  * DESCRIPTION
  1107.  *
  1108.  * Serialize a curl_httppost struct built with curl_formadd().
  1109.  * Accepts a void pointer as second argument which will be passed to
  1110.  * the curl_formget_callback function.
  1111.  * Returns 0 on success.
  1112.  */
  1113. CURL_EXTERN int curl_formget(struct curl_httppost *form, void *arg,
  1114.                              curl_formget_callback append);
  1115. /*
  1116.  * NAME curl_formfree()
  1117.  *
  1118.  * DESCRIPTION
  1119.  *
  1120.  * Free a multipart formpost previously built with curl_formadd().
  1121.  */
  1122. CURL_EXTERN void curl_formfree(struct curl_httppost *form);
  1123. /*
  1124.  * NAME curl_getenv()
  1125.  *
  1126.  * DESCRIPTION
  1127.  *
  1128.  * Returns a malloc()'ed string that MUST be curl_free()ed after usage is
  1129.  * complete. DEPRECATED - see lib/README.curlx
  1130.  */
  1131. CURL_EXTERN char *curl_getenv(const char *variable);
  1132. /*
  1133.  * NAME curl_version()
  1134.  *
  1135.  * DESCRIPTION
  1136.  *
  1137.  * Returns a static ascii string of the libcurl version.
  1138.  */
  1139. CURL_EXTERN char *curl_version(void);
  1140. /*
  1141.  * NAME curl_easy_escape()
  1142.  *
  1143.  * DESCRIPTION
  1144.  *
  1145.  * Escapes URL strings (converts all letters consider illegal in URLs to their
  1146.  * %XX versions). This function returns a new allocated string or NULL if an
  1147.  * error occurred.
  1148.  */
  1149. CURL_EXTERN char *curl_easy_escape(CURL *handle,
  1150.                                    const char *string,
  1151.                                    int length);
  1152. /* the previous version: */
  1153. CURL_EXTERN char *curl_escape(const char *string,
  1154.                               int length);
  1155. /*
  1156.  * NAME curl_easy_unescape()
  1157.  *
  1158.  * DESCRIPTION
  1159.  *
  1160.  * Unescapes URL encoding in strings (converts all %XX codes to their 8bit
  1161.  * versions). This function returns a new allocated string or NULL if an error
  1162.  * occurred.
  1163.  * Conversion Note: On non-ASCII platforms the ASCII %XX codes are
  1164.  * converted into the host encoding.
  1165.  */
  1166. CURL_EXTERN char *curl_easy_unescape(CURL *handle,
  1167.                                      const char *string,
  1168.                                      int length,
  1169.                                      int *outlength);
  1170. /* the previous version */
  1171. CURL_EXTERN char *curl_unescape(const char *string,
  1172.                                 int length);
  1173. /*
  1174.  * NAME curl_free()
  1175.  *
  1176.  * DESCRIPTION
  1177.  *
  1178.  * Provided for de-allocation in the same translation unit that did the
  1179.  * allocation. Added in libcurl 7.10
  1180.  */
  1181. CURL_EXTERN void curl_free(void *p);
  1182. /*
  1183.  * NAME curl_global_init()
  1184.  *
  1185.  * DESCRIPTION
  1186.  *
  1187.  * curl_global_init() should be invoked exactly once for each application that
  1188.  * uses libcurl
  1189.  */
  1190. CURL_EXTERN CURLcode curl_global_init(long flags);
  1191. /*
  1192.  * NAME curl_global_init_mem()
  1193.  *
  1194.  * DESCRIPTION
  1195.  *
  1196.  * curl_global_init() or curl_global_init_mem() should be invoked exactly once
  1197.  * for each application that uses libcurl.  This function can be used to
  1198.  * initialize libcurl and set user defined memory management callback
  1199.  * functions.  Users can implement memory management routines to check for
  1200.  * memory leaks, check for mis-use of the curl library etc.  User registered
  1201.  * callback routines with be invoked by this library instead of the system
  1202.  * memory management routines like malloc, free etc.
  1203.  */
  1204. CURL_EXTERN CURLcode curl_global_init_mem(long flags,
  1205.                                           curl_malloc_callback m,
  1206.                                           curl_free_callback f,
  1207.                                           curl_realloc_callback r,
  1208.                                           curl_strdup_callback s,
  1209.                                           curl_calloc_callback c);
  1210. /*
  1211.  * NAME curl_global_cleanup()
  1212.  *
  1213.  * DESCRIPTION
  1214.  *
  1215.  * curl_global_cleanup() should be invoked exactly once for each application
  1216.  * that uses libcurl
  1217.  */
  1218. CURL_EXTERN void curl_global_cleanup(void);
  1219. /* linked-list structure for the CURLOPT_QUOTE option (and other) */
  1220. struct curl_slist {
  1221.   char *data;
  1222.   struct curl_slist *next;
  1223. };
  1224. /*
  1225.  * NAME curl_slist_append()
  1226.  *
  1227.  * DESCRIPTION
  1228.  *
  1229.  * Appends a string to a linked list. If no list exists, it will be created
  1230.  * first. Returns the new list, after appending.
  1231.  */
  1232. CURL_EXTERN struct curl_slist *curl_slist_append(struct curl_slist *,
  1233.                                                  const char *);
  1234. /*
  1235.  * NAME curl_slist_free_all()
  1236.  *
  1237.  * DESCRIPTION
  1238.  *
  1239.  * free a previously built curl_slist.
  1240.  */
  1241. CURL_EXTERN void curl_slist_free_all(struct curl_slist *);
  1242. /*
  1243.  * NAME curl_getdate()
  1244.  *
  1245.  * DESCRIPTION
  1246.  *
  1247.  * Returns the time, in seconds since 1 Jan 1970 of the time string given in
  1248.  * the first argument. The time argument in the second parameter is unused
  1249.  * and should be set to NULL.
  1250.  */
  1251. CURL_EXTERN time_t curl_getdate(const char *p, const time_t *unused);
  1252. /* info about the certificate chain, only for OpenSSL builds. Asked
  1253.    for with CURLOPT_CERTINFO / CURLINFO_CERTINFO */
  1254. struct curl_certinfo {
  1255.   int num_of_certs;             /* number of certificates with information */
  1256.   struct curl_slist **certinfo; /* for each index in this array, there's a
  1257.                                    linked list with textual information in the
  1258.                                    format "name: value" */
  1259. };
  1260. #define CURLINFO_STRING   0x100000
  1261. #define CURLINFO_LONG     0x200000
  1262. #define CURLINFO_DOUBLE   0x300000
  1263. #define CURLINFO_SLIST    0x400000
  1264. #define CURLINFO_MASK     0x0fffff
  1265. #define CURLINFO_TYPEMASK 0xf00000
  1266. typedef enum {
  1267.   CURLINFO_NONE, /* first, never use this */
  1268.   CURLINFO_EFFECTIVE_URL    = CURLINFO_STRING + 1,
  1269.   CURLINFO_RESPONSE_CODE    = CURLINFO_LONG   + 2,
  1270.   CURLINFO_TOTAL_TIME       = CURLINFO_DOUBLE + 3,
  1271.   CURLINFO_NAMELOOKUP_TIME  = CURLINFO_DOUBLE + 4,
  1272.   CURLINFO_CONNECT_TIME     = CURLINFO_DOUBLE + 5,
  1273.   CURLINFO_PRETRANSFER_TIME = CURLINFO_DOUBLE + 6,
  1274.   CURLINFO_SIZE_UPLOAD      = CURLINFO_DOUBLE + 7,
  1275.   CURLINFO_SIZE_DOWNLOAD    = CURLINFO_DOUBLE + 8,
  1276.   CURLINFO_SPEED_DOWNLOAD   = CURLINFO_DOUBLE + 9,
  1277.   CURLINFO_SPEED_UPLOAD     = CURLINFO_DOUBLE + 10,
  1278.   CURLINFO_HEADER_SIZE      = CURLINFO_LONG   + 11,
  1279.   CURLINFO_REQUEST_SIZE     = CURLINFO_LONG   + 12,
  1280.   CURLINFO_SSL_VERIFYRESULT = CURLINFO_LONG   + 13,
  1281.   CURLINFO_FILETIME         = CURLINFO_LONG   + 14,
  1282.   CURLINFO_CONTENT_LENGTH_DOWNLOAD   = CURLINFO_DOUBLE + 15,
  1283.   CURLINFO_CONTENT_LENGTH_UPLOAD     = CURLINFO_DOUBLE + 16,
  1284.   CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE + 17,
  1285.   CURLINFO_CONTENT_TYPE     = CURLINFO_STRING + 18,
  1286.   CURLINFO_REDIRECT_TIME    = CURLINFO_DOUBLE + 19,
  1287.   CURLINFO_REDIRECT_COUNT   = CURLINFO_LONG   + 20,
  1288.   CURLINFO_PRIVATE          = CURLINFO_STRING + 21,
  1289.   CURLINFO_HTTP_CONNECTCODE = CURLINFO_LONG   + 22,
  1290.   CURLINFO_HTTPAUTH_AVAIL   = CURLINFO_LONG   + 23,
  1291.   CURLINFO_PROXYAUTH_AVAIL  = CURLINFO_LONG   + 24,
  1292.   CURLINFO_OS_ERRNO         = CURLINFO_LONG   + 25,
  1293.   CURLINFO_NUM_CONNECTS     = CURLINFO_LONG   + 26,
  1294.   CURLINFO_SSL_ENGINES      = CURLINFO_SLIST  + 27,
  1295.   CURLINFO_COOKIELIST       = CURLINFO_SLIST  + 28,
  1296.   CURLINFO_LASTSOCKET       = CURLINFO_LONG   + 29,
  1297.   CURLINFO_FTP_ENTRY_PATH   = CURLINFO_STRING + 30,
  1298.   CURLINFO_REDIRECT_URL     = CURLINFO_STRING + 31,
  1299.   CURLINFO_PRIMARY_IP       = CURLINFO_STRING + 32,
  1300.   CURLINFO_APPCONNECT_TIME  = CURLINFO_DOUBLE + 33,
  1301.   CURLINFO_CERTINFO         = CURLINFO_SLIST  + 34,
  1302.   /* Fill in new entries below here! */
  1303.   CURLINFO_LASTONE          = 34
  1304. } CURLINFO;
  1305. /* CURLINFO_RESPONSE_CODE is the new name for the option previously known as
  1306.    CURLINFO_HTTP_CODE */
  1307. #define CURLINFO_HTTP_CODE CURLINFO_RESPONSE_CODE
  1308. typedef enum {
  1309.   CURLCLOSEPOLICY_NONE, /* first, never use this */
  1310.   CURLCLOSEPOLICY_OLDEST,
  1311.   CURLCLOSEPOLICY_LEAST_RECENTLY_USED,
  1312.   CURLCLOSEPOLICY_LEAST_TRAFFIC,
  1313.   CURLCLOSEPOLICY_SLOWEST,
  1314.   CURLCLOSEPOLICY_CALLBACK,
  1315.   CURLCLOSEPOLICY_LAST /* last, never use this */
  1316. } curl_closepolicy;
  1317. #define CURL_GLOBAL_SSL (1<<0)
  1318. #define CURL_GLOBAL_WIN32 (1<<1)
  1319. #define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL|CURL_GLOBAL_WIN32)
  1320. #define CURL_GLOBAL_NOTHING 0
  1321. #define CURL_GLOBAL_DEFAULT CURL_GLOBAL_ALL
  1322. /*****************************************************************************
  1323.  * Setup defines, protos etc for the sharing stuff.
  1324.  */
  1325. /* Different data locks for a single share */
  1326. typedef enum {
  1327.   CURL_LOCK_DATA_NONE = 0,
  1328.   /*  CURL_LOCK_DATA_SHARE is used internally to say that
  1329.    *  the locking is just made to change the internal state of the share
  1330.    *  itself.
  1331.    */
  1332.   CURL_LOCK_DATA_SHARE,
  1333.   CURL_LOCK_DATA_COOKIE,
  1334.   CURL_LOCK_DATA_DNS,
  1335.   CURL_LOCK_DATA_SSL_SESSION,
  1336.   CURL_LOCK_DATA_CONNECT,
  1337.   CURL_LOCK_DATA_LAST
  1338. } curl_lock_data;
  1339. /* Different lock access types */
  1340. typedef enum {
  1341.   CURL_LOCK_ACCESS_NONE = 0,   /* unspecified action */
  1342.   CURL_LOCK_ACCESS_SHARED = 1, /* for read perhaps */
  1343.   CURL_LOCK_ACCESS_SINGLE = 2, /* for write perhaps */
  1344.   CURL_LOCK_ACCESS_LAST        /* never use */
  1345. } curl_lock_access;
  1346. typedef void (*curl_lock_function)(CURL *handle,
  1347.                                    curl_lock_data data,
  1348.                                    curl_lock_access locktype,
  1349.                                    void *userptr);
  1350. typedef void (*curl_unlock_function)(CURL *handle,
  1351.                                      curl_lock_data data,
  1352.                                      void *userptr);
  1353. typedef void CURLSH;
  1354. typedef enum {
  1355.   CURLSHE_OK,  /* all is fine */
  1356.   CURLSHE_BAD_OPTION, /* 1 */
  1357.   CURLSHE_IN_USE,     /* 2 */
  1358.   CURLSHE_INVALID,    /* 3 */
  1359.   CURLSHE_NOMEM,      /* out of memory */
  1360.   CURLSHE_LAST /* never use */
  1361. } CURLSHcode;
  1362. typedef enum {
  1363.   CURLSHOPT_NONE,  /* don't use */
  1364.   CURLSHOPT_SHARE,   /* specify a data type to share */
  1365.   CURLSHOPT_UNSHARE, /* specify which data type to stop sharing */
  1366.   CURLSHOPT_LOCKFUNC,   /* pass in a 'curl_lock_function' pointer */
  1367.   CURLSHOPT_UNLOCKFUNC, /* pass in a 'curl_unlock_function' pointer */
  1368.   CURLSHOPT_USERDATA,   /* pass in a user data pointer used in the lock/unlock
  1369.                            callback functions */
  1370.   CURLSHOPT_LAST  /* never use */
  1371. } CURLSHoption;
  1372. CURL_EXTERN CURLSH *curl_share_init(void);
  1373. CURL_EXTERN CURLSHcode curl_share_setopt(CURLSH *, CURLSHoption option, ...);
  1374. CURL_EXTERN CURLSHcode curl_share_cleanup(CURLSH *);
  1375. /****************************************************************************
  1376.  * Structures for querying information about the curl library at runtime.
  1377.  */
  1378. typedef enum {
  1379.   CURLVERSION_FIRST,
  1380.   CURLVERSION_SECOND,
  1381.   CURLVERSION_THIRD,
  1382.   CURLVERSION_FOURTH,
  1383.   CURLVERSION_LAST /* never actually use this */
  1384. } CURLversion;
  1385. /* The 'CURLVERSION_NOW' is the symbolic name meant to be used by
  1386.    basically all programs ever that want to get version information. It is
  1387.    meant to be a built-in version number for what kind of struct the caller
  1388.    expects. If the struct ever changes, we redefine the NOW to another enum
  1389.    from above. */
  1390. #define CURLVERSION_NOW CURLVERSION_FOURTH
  1391. typedef struct {
  1392.   CURLversion age;          /* age of the returned struct */
  1393.   const char *version;      /* LIBCURL_VERSION */
  1394.   unsigned int version_num; /* LIBCURL_VERSION_NUM */
  1395.   const char *host;         /* OS/host/cpu/machine when configured */
  1396.   int features;             /* bitmask, see defines below */
  1397.   const char *ssl_version;  /* human readable string */
  1398.   long ssl_version_num;     /* not used anymore, always 0 */
  1399.   const char *libz_version; /* human readable string */
  1400.   /* protocols is terminated by an entry with a NULL protoname */
  1401.   const char * const *protocols;
  1402.   /* The fields below this were added in CURLVERSION_SECOND */
  1403.   const char *ares;
  1404.   int ares_num;
  1405.   /* This field was added in CURLVERSION_THIRD */
  1406.   const char *libidn;
  1407.   /* These field were added in CURLVERSION_FOURTH */
  1408.   /* Same as '_libiconv_version' if built with HAVE_ICONV */
  1409.   int iconv_ver_num;
  1410.   const char *libssh_version; /* human readable string */
  1411. } curl_version_info_data;
  1412. #define CURL_VERSION_IPV6      (1<<0)  /* IPv6-enabled */
  1413. #define CURL_VERSION_KERBEROS4 (1<<1)  /* kerberos auth is supported */
  1414. #define CURL_VERSION_SSL       (1<<2)  /* SSL options are present */
  1415. #define CURL_VERSION_LIBZ      (1<<3)  /* libz features are present */
  1416. #define CURL_VERSION_NTLM      (1<<4)  /* NTLM auth is supported */
  1417. #define CURL_VERSION_GSSNEGOTIATE (1<<5) /* Negotiate auth support */
  1418. #define CURL_VERSION_DEBUG     (1<<6)  /* built with debug capabilities */
  1419. #define CURL_VERSION_ASYNCHDNS (1<<7)  /* asynchronous dns resolves */
  1420. #define CURL_VERSION_SPNEGO    (1<<8)  /* SPNEGO auth */
  1421. #define CURL_VERSION_LARGEFILE (1<<9)  /* supports files bigger than 2GB */
  1422. #define CURL_VERSION_IDN       (1<<10) /* International Domain Names support */
  1423. #define CURL_VERSION_SSPI      (1<<11) /* SSPI is supported */
  1424. #define CURL_VERSION_CONV      (1<<12) /* character conversions are
  1425.                                           supported */
  1426. /*
  1427.  * NAME curl_version_info()
  1428.  *
  1429.  * DESCRIPTION
  1430.  *
  1431.  * This function returns a pointer to a static copy of the version info
  1432.  * struct. See above.
  1433.  */
  1434. CURL_EXTERN curl_version_info_data *curl_version_info(CURLversion);
  1435. /*
  1436.  * NAME curl_easy_strerror()
  1437.  *
  1438.  * DESCRIPTION
  1439.  *
  1440.  * The curl_easy_strerror function may be used to turn a CURLcode value
  1441.  * into the equivalent human readable error string.  This is useful
  1442.  * for printing meaningful error messages.
  1443.  */
  1444. CURL_EXTERN const char *curl_easy_strerror(CURLcode);
  1445. /*
  1446.  * NAME curl_share_strerror()
  1447.  *
  1448.  * DESCRIPTION
  1449.  *
  1450.  * The curl_share_strerror function may be used to turn a CURLSHcode value
  1451.  * into the equivalent human readable error string.  This is useful
  1452.  * for printing meaningful error messages.
  1453.  */
  1454. CURL_EXTERN const char *curl_share_strerror(CURLSHcode);
  1455. /*
  1456.  * NAME curl_easy_pause()
  1457.  *
  1458.  * DESCRIPTION
  1459.  *
  1460.  * The curl_easy_pause function pauses or unpauses transfers. Select the new
  1461.  * state by setting the bitmask, use the convenience defines below.
  1462.  *
  1463.  */
  1464. CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask);
  1465. #define CURLPAUSE_RECV      (1<<0)
  1466. #define CURLPAUSE_RECV_CONT (0)
  1467. #define CURLPAUSE_SEND      (1<<2)
  1468. #define CURLPAUSE_SEND_CONT (0)
  1469. #define CURLPAUSE_ALL       (CURLPAUSE_RECV|CURLPAUSE_SEND)
  1470. #define CURLPAUSE_CONT      (CURLPAUSE_RECV_CONT|CURLPAUSE_SEND_CONT)
  1471. #ifdef  __cplusplus
  1472. }
  1473. #endif
  1474. /* unfortunately, the easy.h and multi.h include files need options and info
  1475.   stuff before they can be included! */
  1476. #include "easy.h" /* nothing in curl is fun without the easy stuff */
  1477. #include "multi.h"
  1478. /* the typechecker doesn't work in C++ (yet) */
  1479. #if defined(__GNUC__) && defined(__GNUC_MINOR__) && 
  1480.     ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && 
  1481.     !defined(__cplusplus) && !defined(CURL_DISABLE_TYPECHECK)
  1482. #include "typecheck-gcc.h"
  1483. #else
  1484. #if defined(__STDC__) && (__STDC__ >= 1)
  1485. /* This preprocessor magic that replaces a call with the exact same call is
  1486.    only done to make sure application authors pass exactly three arguments
  1487.    to these functions. */
  1488. #define curl_easy_setopt(handle,opt,param) curl_easy_setopt(handle,opt,param)
  1489. #define curl_easy_getinfo(handle,info,arg) curl_easy_getinfo(handle,info,arg)
  1490. #define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param)
  1491. #define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param)
  1492. #endif /* __STDC__ >= 1 */
  1493. #endif /* gcc >= 4.3 && !__cplusplus */
  1494. #endif /* __CURL_CURL_H */