summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-11-28 09:10:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-11-28 09:10:04 +0000
commit6bd75ab8400aaf72792e0ae5a083cfd27f96acc0 (patch)
treebcdfb3dee5d9a0d25cb6f0740b686f0972f4353c
parentb8f7d94ef15b93c98cda472a32227d84a3ac5f72 (diff)
downloadgnurl-6bd75ab8400aaf72792e0ae5a083cfd27f96acc0.tar.gz
gnurl-6bd75ab8400aaf72792e0ae5a083cfd27f96acc0.tar.bz2
gnurl-6bd75ab8400aaf72792e0ae5a083cfd27f96acc0.zip
added maxredirs, moved CURL_PROGRESS* defines to src/main.c
-rw-r--r--include/curl/curl.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index ea3c25d5a..56f705681 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -172,6 +172,7 @@ typedef enum {
CURLE_HTTP_PORT_FAILED, /* HTTP Interface operation failed */
CURLE_BAD_PASSWORD_ENTERED, /* when the my_getpass() returns fail */
+ CURLE_TOO_MANY_REDIRECTS , /* catch endless re-direct loops */
CURL_LAST
} CURLcode;
@@ -417,17 +418,17 @@ typedef enum {
/* Custom pointer that gets passed as first argument to the password
function */
CINIT(PASSWDDATA, OBJECTPOINT, 67),
+
+ /* Maximum number of http redirects to follow */
+ CINIT(MAXREDIRS, LONG, 68),
/* Pass a pointer to a time_t to get a possible date of the requested
document! Pass a NULL to shut it off. */
- CINIT(FILETIME, OBJECTPOINT, 68),
+ CINIT(FILETIME, OBJECTPOINT, 69),
CURLOPT_LASTENTRY /* the last unusued */
} CURLoption;
-#define CURL_PROGRESS_STATS 0 /* default progress display */
-#define CURL_PROGRESS_BAR 1
-
typedef enum {
TIMECOND_NONE,
@@ -469,7 +470,7 @@ char *curl_getenv(char *variable);
char *curl_version(void);
/* This is the version number */
-#define LIBCURL_VERSION "7.5-pre3"
+#define LIBCURL_VERSION "7.5-pre4"
#define LIBCURL_VERSION_NUM 0x070500
/* linked-list structure for the CURLOPT_QUOTE option (and other) */