aboutsummaryrefslogtreecommitdiff
path: root/debian
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 /debian
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 'debian')
-rw-r--r--debian/Config.h-deb3
-rw-r--r--debian/Config.h-static3
-rw-r--r--debian/Config.h-udeb3
3 files changed, 9 insertions, 0 deletions
diff --git a/debian/Config.h-deb b/debian/Config.h-deb
index 606204bfe..40ec562ae 100644
--- a/debian/Config.h-deb
+++ b/debian/Config.h-deb
@@ -305,6 +305,9 @@
305// Enable a nifty progress meter in wget (adds just under 2k) 305// Enable a nifty progress meter in wget (adds just under 2k)
306#define BB_FEATURE_WGET_STATUSBAR 306#define BB_FEATURE_WGET_STATUSBAR
307// 307//
308// Enable HTTP authentication in wget
309#define BB_FEATURE_WGET_AUTHENTICATION
310//
308// Clean up all memory before exiting -- usually not needed 311// Clean up all memory before exiting -- usually not needed
309// as the OS can clean up... Don't enable this unless you 312// as the OS can clean up... Don't enable this unless you
310// have a really good reason for cleaning things up manually. 313// have a really good reason for cleaning things up manually.
diff --git a/debian/Config.h-static b/debian/Config.h-static
index 4cde55fda..079c854aa 100644
--- a/debian/Config.h-static
+++ b/debian/Config.h-static
@@ -305,6 +305,9 @@
305// Enable a nifty progress meter in wget (adds just under 2k) 305// Enable a nifty progress meter in wget (adds just under 2k)
306#define BB_FEATURE_WGET_STATUSBAR 306#define BB_FEATURE_WGET_STATUSBAR
307// 307//
308// Enable HTTP authentication in wget
309#define BB_FEATURE_WGET_AUTHENTICATION
310//
308// Clean up all memory before exiting -- usually not needed 311// Clean up all memory before exiting -- usually not needed
309// as the OS can clean up... Don't enable this unless you 312// as the OS can clean up... Don't enable this unless you
310// have a really good reason for cleaning things up manually. 313// have a really good reason for cleaning things up manually.
diff --git a/debian/Config.h-udeb b/debian/Config.h-udeb
index 7aeba2873..9e05c4f06 100644
--- a/debian/Config.h-udeb
+++ b/debian/Config.h-udeb
@@ -305,6 +305,9 @@
305// Enable a nifty progress meter in wget (adds just under 2k) 305// Enable a nifty progress meter in wget (adds just under 2k)
306#define BB_FEATURE_WGET_STATUSBAR 306#define BB_FEATURE_WGET_STATUSBAR
307// 307//
308// Enable HTTP authentication in wget
309#define BB_FEATURE_WGET_AUTHENTICATION
310//
308// Clean up all memory before exiting -- usually not needed 311// Clean up all memory before exiting -- usually not needed
309// as the OS can clean up... Don't enable this unless you 312// as the OS can clean up... Don't enable this unless you
310// have a really good reason for cleaning things up manually. 313// have a really good reason for cleaning things up manually.