aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-08-11 11:48:01 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-08-11 11:48:01 +0000
commit4c831f8b682af6001dc6cdb2815151d54a50cb6e (patch)
treeaa57e3be842fac8ff7d5490c54b920a1a8ad1436 /include
parent7a19923afa17dbfa9b45d8620bac003398cf1ebd (diff)
CURLOPT_PROXYAUTH added by Serge Semashko
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index b646d0e58..182e62177 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -29,7 +29,7 @@
/* This is the version number of the libcurl package from which this header
file origins: */
-#define LIBCURL_VERSION "7.10.7-pre2"
+#define LIBCURL_VERSION "7.10.7-pre3"
/* This is the numeric version of the libcurl version number, meant for easier
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
@@ -672,6 +672,11 @@ typedef enum {
/* FTP Option that causes missing dirs to be created on the remote server */
CINIT(FTP_CREATE_MISSING_DIRS, LONG, 110),
+ /* Set this to a bitmask value to enable the particular authentications
+ methods you like. Use this in combination with CURLOPT_PROXYUSERPWD.
+ Note that setting multiple bits may cause extra network round-trips. */
+ CINIT(PROXYAUTH, LONG, 111),
+
CURLOPT_LASTENTRY /* the last unused */
} CURLoption;