aboutsummaryrefslogtreecommitdiff
path: root/Config.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-05 21:45:54 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-05 21:45:54 +0000
commit79757c9c37beab0032bc065b10bf84d4afe2b500 (patch)
treeec753d3a25083e41816993be04ca9377160ff0e3 /Config.h
parentea9065072c91b6397cb3cb597f248d23415169f0 (diff)
downloadbusybox-79757c9c37beab0032bc065b10bf84d4afe2b500.tar.gz
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
Diffstat (limited to 'Config.h')
-rw-r--r--Config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Config.h b/Config.h
index 44fcbed29..7d8e83d38 100644
--- a/Config.h
+++ b/Config.h
@@ -308,6 +308,9 @@
// Enable a nifty progress meter in wget (adds just under 2k)
#define BB_FEATURE_WGET_STATUSBAR
//
+// Enable HTTP authentication in wget
+#define BB_FEATURE_WGET_AUTHENTICATION
+//
// Clean up all memory before exiting -- usually not needed
// as the OS can clean up... Don't enable this unless you
// have a really good reason for cleaning things up manually.