aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-09-04 15:15:55 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-09-04 15:15:55 +0000
commita3df0f41c4115acdbf954198edee804dba18f886 (patch)
treeeb2132593d8284699863129f0cc5c4e22a618565 /applets
parent0b2b1ecc8aa285463c3aa791738524bcf588b41b (diff)
downloadbusybox-w32-a3df0f41c4115acdbf954198edee804dba18f886.tar.gz
busybox-w32-a3df0f41c4115acdbf954198edee804dba18f886.tar.bz2
busybox-w32-a3df0f41c4115acdbf954198edee804dba18f886.zip
Initial implementation of wget, from Chip Rosenthal <chip@laserlink.net>.
Very cool. Still lacks "chunked" transfer-coding, so not totally RFC compliant for HTTP1.1, but very nice nonethe less, and very small. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1005 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-rw-r--r--applets/busybox.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c
index 30ea1121d..0ffa94e09 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -328,6 +328,9 @@ const struct BB_applet applets[] = {
328#ifdef BB_WC 328#ifdef BB_WC
329 {"wc", wc_main, _BB_DIR_USR_BIN, wc_usage}, 329 {"wc", wc_main, _BB_DIR_USR_BIN, wc_usage},
330#endif 330#endif
331#ifdef BB_WGET
332 {"wget", wget_main, _BB_DIR_USR_BIN, wget_usage},
333#endif
331#ifdef BB_WHICH 334#ifdef BB_WHICH
332 {"which", which_main, _BB_DIR_USR_BIN, which_usage}, 335 {"which", which_main, _BB_DIR_USR_BIN, which_usage},
333#endif 336#endif