diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-05 21:45:54 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-05 21:45:54 +0000 |
commit | 545f903e8134d30bbbd74fc0c92d25c19aaf1f68 (patch) | |
tree | ec753d3a25083e41816993be04ca9377160ff0e3 /applets/usage.h | |
parent | b7a60e3cb20d884862e54443da62634de7bdf4a6 (diff) | |
download | busybox-w32-545f903e8134d30bbbd74fc0c92d25c19aaf1f68.tar.gz busybox-w32-545f903e8134d30bbbd74fc0c92d25c19aaf1f68.tar.bz2 busybox-w32-545f903e8134d30bbbd74fc0c92d25c19aaf1f68.zip |
A patch from Dmitry Zakharov <dmit@crp.bank.gov.ua> which adds
- support for ftp downloads
- HTTP basic authentication support (as an optional feature)
- handling of http redirections
- protocol version changed to 1.0 (to stop servers from requesting
chunked encoding)
- bugfix: in the case when content-length not given, wget didn't
download anything
- when attempting to continue an aborted download but server doesn't
support restarts, reopen output file in write mode
- changed assumption that existing file should restart an aborted
download. Now the user must explicitly specify this with -c
git-svn-id: svn://busybox.net/trunk/busybox@2263 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets/usage.h')
-rw-r--r-- | applets/usage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applets/usage.h b/applets/usage.h index abd0156ad..bf2f7bd63 100644 --- a/applets/usage.h +++ b/applets/usage.h | |||
@@ -1718,9 +1718,10 @@ | |||
1718 | #define wget_trivial_usage \ | 1718 | #define wget_trivial_usage \ |
1719 | "[-c] [-O file] url" | 1719 | "[-c] [-O file] url" |
1720 | #define wget_full_usage \ | 1720 | #define wget_full_usage \ |
1721 | "wget retrieves files via HTTP\n\n" \ | 1721 | "wget retrieves files via HTTP or FTP\n\n" \ |
1722 | "Options:\n" \ | 1722 | "Options:\n" \ |
1723 | "\t-c\tcontinue retrieval of aborted transfers\n" \ | 1723 | "\t-c\tcontinue retrieval of aborted transfers\n" \ |
1724 | "\t-q\tquiet mode - do not print\n" \ | ||
1724 | "\t-O\tsave to filename ('-' for stdout)" | 1725 | "\t-O\tsave to filename ('-' for stdout)" |
1725 | 1726 | ||
1726 | #define which_trivial_usage \ | 1727 | #define which_trivial_usage \ |