Added AUTOREFERER

This commit is contained in:
Daniel Stenberg 2000-06-20 09:28:36 +00:00
parent f30ffef477
commit 1c6eccbf84
1 changed files with 6 additions and 2 deletions

View File

@ -360,8 +360,12 @@ typedef enum {
* prototype defines. */ * prototype defines. */
T(PROGRESSFUNCTION, FUNCTIONPOINT, 56), T(PROGRESSFUNCTION, FUNCTIONPOINT, 56),
/* Data passed to the progress callback */
T(PROGRESSDATA, OBJECTPOINT, 57), T(PROGRESSDATA, OBJECTPOINT, 57),
/* We want the referer field set automatically when following locations */
T(AUTOREFERER, LONG, 58),
CURLOPT_LASTENTRY /* the last unusued */ CURLOPT_LASTENTRY /* the last unusued */
} CURLoption; } CURLoption;
@ -405,8 +409,8 @@ char *curl_getenv(char *variable);
char *curl_version(void); char *curl_version(void);
/* This is the version number */ /* This is the version number */
#define LIBCURL_VERSION "7.0.6beta" #define LIBCURL_VERSION "7.0.7beta"
#define LIBCURL_VERSION_NUM 0x070006 #define LIBCURL_VERSION_NUM 0x070007
/* linked-list structure for the CURLOPT_QUOTE option */ /* linked-list structure for the CURLOPT_QUOTE option */
struct curl_slist { struct curl_slist {