aboutsummaryrefslogtreecommitdiff
path: root/Config.h
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-05 21:45:54 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-05 21:45:54 +0000
commit545f903e8134d30bbbd74fc0c92d25c19aaf1f68 (patch)
treeec753d3a25083e41816993be04ca9377160ff0e3 /Config.h
parentb7a60e3cb20d884862e54443da62634de7bdf4a6 (diff)
downloadbusybox-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 '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 @@
308// Enable a nifty progress meter in wget (adds just under 2k) 308// Enable a nifty progress meter in wget (adds just under 2k)
309#define BB_FEATURE_WGET_STATUSBAR 309#define BB_FEATURE_WGET_STATUSBAR
310// 310//
311// Enable HTTP authentication in wget
312#define BB_FEATURE_WGET_AUTHENTICATION
313//
311// Clean up all memory before exiting -- usually not needed 314// Clean up all memory before exiting -- usually not needed
312// as the OS can clean up... Don't enable this unless you 315// as the OS can clean up... Don't enable this unless you
313// have a really good reason for cleaning things up manually. 316// have a really good reason for cleaning things up manually.