aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-11-28 23:21:55 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-11-28 23:21:55 +0000
commit01ed950bbe0b3321be77d79467e48af2cd42f8f6 (patch)
tree3e4d39b0c6563985a0081a42361e42f64886b66e /include
parentb1076e0a9e56e0f65214093a0842db82dbef0ca2 (diff)
added CURLOPT_FTP_USE_EPSV
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 48b82d177..52b3ecf01 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -212,10 +212,8 @@ typedef enum {
in the CURLOPT_FLAGS to activate this */
CINIT(RANGE, OBJECTPOINT, 7),
-#if 0
- /* Configuration flags */
- CINIT(FLAGS, LONG, 8),
-#endif
+ /* not used */
+
/* Specified file stream to upload from (use as input): */
CINIT(INFILE, OBJECTPOINT, 9),
@@ -321,11 +319,8 @@ typedef enum {
/* HTTP request, for odd commands like DELETE, TRACE and others */
CINIT(STDERR, OBJECTPOINT, 37),
-#if 0
- /* Progress mode set alternative progress mode displays. Alternative
- ones should now be made by the client, not the lib! */
- CINIT(PROGRESSMODE, LONG, 38),
-#endif
+ /* 38 is not used */
+
/* send linked-list of post-transfer QUOTE commands */
CINIT(POSTQUOTE, OBJECTPOINT, 39),
@@ -465,6 +460,11 @@ typedef enum {
/* Specify which HTTP version to use! This must be set to one of the
CURL_HTTP_VERSION* enums set below. */
CINIT(HTTP_VERSION, LONG, 84),
+
+ /* Specificly switch on or off the FTP engine's use of the EPSV command. By
+ default, that one will always be attempted before the more traditional
+ PASV command. */
+ CINIT(FTP_USE_EPSV, LONG, 85),
CURLOPT_LASTENTRY /* the last unusued */
} CURLoption;