aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-09-03 22:02:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-09-03 22:02:40 +0000
commitf2d422235b0bf7dc6e7179143296a5e4abf8b9ed (patch)
tree27de1368f21ba3bb8fbadc9f1ae20a7ab90898f7 /include
parent6a678f6d64b287eaf58186108a4cf9f1fcff8990 (diff)
Early Ehlinger's CURLOPT_FTP_RESPONSE_TIMEOUT patch applied.
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 96a8b4b11..10ef77ccb 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"
+#define LIBCURL_VERSION "7.10.8-test2"
/* This is the numeric version of the libcurl version number, meant for easier
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
@@ -45,7 +45,7 @@
always a greater number in a more recent release. It makes comparisons with
greater than and less than work.
*/
-#define LIBCURL_VERSION_NUM 0x070a07
+#define LIBCURL_VERSION_NUM 0x070a08
#include <stdio.h>
@@ -678,6 +678,12 @@ typedef enum {
Note that setting multiple bits may cause extra network round-trips. */
CINIT(PROXYAUTH, LONG, 111),
+ /* FPT Option that changes the timeout, in seconds, associated with
+ getting a response. This is different from transfer timeout time and
+ essentially places a demand on the FTP server to acknowledge commands
+ in a timely manner. */
+ CINIT(FTP_RESPONSE_TIMEOUT, LONG , 112),
+
CURLOPT_LASTENTRY /* the last unused */
} CURLoption;