aboutsummaryrefslogtreecommitdiff
path: root/networking/ifconfig.c
AgeCommit message (Collapse)Author
2001-08-10This corrects the _really_poor_ implementation of "broadcast +" handlingManuel Novoa III
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).
2001-07-07This patch from Fabio Ferrari <fabio.ferrari@digitro.com.br> enablesEric Andersen
"broadcast +" for deriving the broadcast address automagically.
2001-03-26Fix in_ether bug regarding hex digits reported by Jonas Holmberg ↵Manuel Novoa III
<jonas.holmberg@axis.com>.
2001-03-15Don't confuse people. If the run 'ifconfig' and they didn'tEric Andersen
compile with BB_FEATURE_IFCONFIG_STATUS turned on, it will now print a message telling them as much. -Erik
2001-03-12Reduced code size of interface. Support ifconfig -a and ifconfig interfaceManuel Novoa III
display. Change %llu to %Lu in ifconfig for hacked unsigned long long support in uClibc scanf.
2001-03-10Quick mod to enable option -a for ifconfig.Manuel Novoa III
2001-03-09Use perror_msg_and_die function where appropriate.Manuel Novoa III
2001-03-08Improved port of ifconfig... smaller and with more features.Manuel Novoa III
2001-03-06Add in a first pass at ifconfig status reporting. It took a long whileEric Andersen
hacking on the mess in net-tools-1.59, but it currently adds 12k and supports ethernet, loop, ppp, and treats everything else as a generic interface. Works ok for me. -Erik
2001-02-20It turns out that DODMALLOC was broken when I reorganized busybox.hEric Andersen
header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik
2001-02-14This patch, put together by Manuel Novoa III, is a merge of workEric Andersen
done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed.
2001-02-14Add in ifconfig and routeEric Andersen