aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-06-20 09:28:36 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-06-20 09:28:36 +0000
commit1c6eccbf847b9b9d2d1735dbaf1cf2573fd8e620 (patch)
treec421a3c346dc3bc444fee3b42a26ce7023d46938 /include
parentf30ffef477636dc10a72eb30590a84a0218e5935 (diff)
Added AUTOREFERER
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 8ed1e88e9..c00345d0a 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -360,8 +360,12 @@ typedef enum {
* prototype defines. */
T(PROGRESSFUNCTION, FUNCTIONPOINT, 56),
+ /* Data passed to the progress callback */
T(PROGRESSDATA, OBJECTPOINT, 57),
+ /* We want the referer field set automatically when following locations */
+ T(AUTOREFERER, LONG, 58),
+
CURLOPT_LASTENTRY /* the last unusued */
} CURLoption;
@@ -405,8 +409,8 @@ char *curl_getenv(char *variable);
char *curl_version(void);
/* This is the version number */
-#define LIBCURL_VERSION "7.0.6beta"
-#define LIBCURL_VERSION_NUM 0x070006
+#define LIBCURL_VERSION "7.0.7beta"
+#define LIBCURL_VERSION_NUM 0x070007
/* linked-list structure for the CURLOPT_QUOTE option */
struct curl_slist {