summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-11-29 19:42:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-11-29 19:42:51 +0000
commit87c562845c0b7fa19abd99268869ec0a65100e95 (patch)
tree857a3382843266543ffe82ad6ba56bb767f31266
parent6c81d74626478734f32c6bc5688d12c84f1be14d (diff)
downloadgnurl-87c562845c0b7fa19abd99268869ec0a65100e95.tar.gz
gnurl-87c562845c0b7fa19abd99268869ec0a65100e95.tar.bz2
gnurl-87c562845c0b7fa19abd99268869ec0a65100e95.zip
--disable-epsv
-rw-r--r--CHANGES6
-rw-r--r--src/main.c11
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 1090b9a53..382fd5da8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,7 +7,11 @@
History of Changes
Daniel (29 November 2001)
-- Eric provided a few more fixes for building on Macs.
+- Added --disable-epsv as an option. When used, curl won't attempt to use the
+ EPSV command when doing passive FTP downloads.
+
+- Eric provided a few more fixes for building on Macs. He also pointed out
+ a flaw in the signal handler restoration code.
Daniel (28 November 2001)
- Fiddled with some Tru64 problems reported by Dimitris Sarris. They appear
diff --git a/src/main.c b/src/main.c
index f71262bc2..c332f6a47 100644
--- a/src/main.c
+++ b/src/main.c
@@ -313,6 +313,7 @@ static void help(void)
" -d/--data <data> HTTP POST data (H)\n"
" --data-ascii <data> HTTP POST ASCII data (H)\n"
" --data-binary <data> HTTP POST binary data (H)\n"
+ " --disable-epsv Prevents curl from using EPSV (F)\n"
" -D/--dump-header <file> Write the headers to this file\n"
" --egd-file <file> EGD socket path for random data (SSL)\n"
" -e/--referer Referer page (H)");
@@ -387,6 +388,7 @@ struct Configurable {
char *cookiefile; /* read from this file */
bool use_resume;
bool resume_from_current;
+ bool disable_epsv;
int resume_from;
char *postfields;
long postfieldsize;
@@ -862,6 +864,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
{"5b", "egd-file", TRUE},
{"5c", "connect-timeout", TRUE},
{"5d", "ciphers", TRUE},
+ {"5e", "disable-epsv", FALSE},
{"0", "http1.0", FALSE},
{"1", "tlsv1", FALSE},
@@ -1028,6 +1031,9 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
case 'd': /* ciphers */
GetStr(&config->cipher_list, nextarg);
break;
+ case 'e': /* --disable-epsv */
+ config->disable_epsv ^= TRUE;
+ break;
default: /* the URL! */
{
struct getout *url;
@@ -2305,6 +2311,11 @@ operate(struct Configurable *config, int argc, char *argv[])
if(config->httpversion)
curl_easy_setopt(curl, CURLOPT_HTTP_VERSION, config->httpversion);
+
+ /* new in libcurl 7.9.2: */
+ if(config->disable_epsv)
+ /* disable it */
+ curl_easy_setopt(curl, CURLOPT_FTP_USE_EPSV, FALSE);
res = curl_easy_perform(curl);