diff options
author | Denis Vlasenko | 2009-03-02 15:08:25 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-03-02 15:08:25 +0000 |
commit | 22f180fd6c1f8186dea0ba4ee1451b5241051b5e (patch) | |
tree | 79361ec83e8f47c5585e4018b597889fd51599a8 /networking | |
parent | f62f761936ed33fa89680f5d129db55bee610eb9 (diff) | |
download | busybox-22f180fd6c1f8186dea0ba4ee1451b5241051b5e.zip busybox-22f180fd6c1f8186dea0ba4ee1451b5241051b5e.tar.gz |
wget: fix --header handling
Diffstat (limited to 'networking')
-rw-r--r-- | networking/wget.c | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/networking/wget.c b/networking/wget.c index d782cc4..23143d5 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -417,15 +417,17 @@ int wget_main(int argc UNUSED_PARAM, char **argv) KEY_content_length = 1, KEY_transfer_encoding, KEY_chunked, KEY_location }; enum { - WGET_OPT_CONTINUE = 0x1, - WGET_OPT_SPIDER = 0x2, - WGET_OPT_QUIET = 0x4, - WGET_OPT_OUTNAME = 0x8, - WGET_OPT_PREFIX = 0x10, - WGET_OPT_PROXY = 0x20, - WGET_OPT_USER_AGENT = 0x40, - WGET_OPT_PASSIVE = 0x80, - WGET_OPT_HEADER = 0x100, + WGET_OPT_CONTINUE = (1 << 0), + WGET_OPT_SPIDER = (1 << 1), + WGET_OPT_QUIET = (1 << 2), + WGET_OPT_OUTNAME = (1 << 3), + WGET_OPT_PREFIX = (1 << 4), + WGET_OPT_PROXY = (1 << 5), + WGET_OPT_USER_AGENT = (1 << 6), + WGET_OPT_RETRIES = (1 << 7), + WGET_OPT_NETWORK_READ_TIMEOUT = (1 << 8), + WGET_OPT_PASSIVE = (1 << 9), + WGET_OPT_HEADER = (1 << 10), }; #if ENABLE_FEATURE_WGET_LONG_OPTIONS static const char wget_longopts[] ALIGN1 = @@ -437,6 +439,10 @@ int wget_main(int argc UNUSED_PARAM, char **argv) "directory-prefix\0" Required_argument "P" "proxy\0" Required_argument "Y" "user-agent\0" Required_argument "U" + /* Ignored: */ + // "tries\0" Required_argument "t" + // "timeout\0" Required_argument "T" + /* Ignored (we always use PASV): */ "passive-ftp\0" No_argument "\xff" "header\0" Required_argument "\xfe" ; |