]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Added AUTOREFERER
authorDaniel Stenberg <daniel@haxx.se>
Tue, 20 Jun 2000 09:28:36 +0000 (09:28 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 20 Jun 2000 09:28:36 +0000 (09:28 +0000)
include/curl/curl.h

index 8ed1e88e9573480f295c3ccd6e1506894711d9d0..c00345d0a245bc7a46c2477b550aec723d956ba4 100644 (file)
@@ -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 {