aboutsummaryrefslogtreecommitdiff
path: root/Config.h
diff options
context:
space:
mode:
authormjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-08-10 06:02:23 +0000
committermjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-08-10 06:02:23 +0000
commitcb59989ded3cbefe38243e7dee029fdac54b631f (patch)
treed4a60afff2a00178ee98061428be703bd262267d /Config.h
parent311f38c0bb3fc81fbebc354dba27fc2705cf2f00 (diff)
downloadbusybox-w32-cb59989ded3cbefe38243e7dee029fdac54b631f.tar.gz
busybox-w32-cb59989ded3cbefe38243e7dee029fdac54b631f.tar.bz2
busybox-w32-cb59989ded3cbefe38243e7dee029fdac54b631f.zip
This corrects the _really_poor_ implementation of "broadcast +" handling
by ifconfig that someone had submitted. It fixes 1 bug, gets rid of the excessive bloating of a structure that is used in a static const array, and removes the implicit struct copys by keeping only the int type needed. It also turns this into a configurable feature (off by default). git-svn-id: svn://busybox.net/trunk/busybox@3236 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Config.h')
-rw-r--r--Config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Config.h b/Config.h
index e6f5315f2..c46e2d282 100644
--- a/Config.h
+++ b/Config.h
@@ -319,7 +319,7 @@
319// Support for Minix filesystem, version 2 319// Support for Minix filesystem, version 2
320//#define BB_FEATURE_MINIX2 320//#define BB_FEATURE_MINIX2
321// 321//
322// Enable ifconfig status reporting output -- this feature adds 12k. 322// Enable ifconfig status reporting output -- this feature adds 7k.
323//#define BB_FEATURE_IFCONFIG_STATUS 323//#define BB_FEATURE_IFCONFIG_STATUS
324// 324//
325// Enable ifconfig slip-specific options "keepalive" and "outfill" 325// Enable ifconfig slip-specific options "keepalive" and "outfill"
@@ -331,6 +331,10 @@
331// Enable ifconfig option "hw". Currently works for only with "ether". 331// Enable ifconfig option "hw". Currently works for only with "ether".
332//#define BB_FEATURE_IFCONFIG_HW 332//#define BB_FEATURE_IFCONFIG_HW
333// 333//
334// Allows "broadcast +" to set broadcast automatically based on hostaddr
335// and netmask, at a cost of about 100 bytes of code (i386).
336//#define BB_FEATURE_IFCONFIG_BROADCAST_PLUS
337//
334// Enable busybox --install [-s] 338// Enable busybox --install [-s]
335// to create links (or symlinks) for all the commands that are 339// to create links (or symlinks) for all the commands that are
336// compiled into the binary. (needs /proc filesystem) 340// compiled into the binary. (needs /proc filesystem)