aboutsummaryrefslogtreecommitdiff
path: root/networking
AgeCommit message (Collapse)Author
2006-06-07- reuse strings and messages. Saves about 600BBernhard Reutner-Fischer
2006-06-07use bb_xbind/bb_xlistenMike Frysinger
2006-06-07- fix the build if we have ftpput without ftpget (speeling reeoe)Bernhard Reutner-Fischer
Thanks to Stephane Billiart
2006-06-05Header cleanup on two more networking files (move libbb.h to the top andRob Landley
remove #includes that libbb.h already does), plus a minor cleanup of libbb.h to move #includes towards the top of the file where we can see 'em.
2006-06-03- use bb_msg_{read,write}_error where appropriate.Bernhard Reutner-Fischer
text data bss dec hex filename 825015 9100 645216 1479331 1692a3 busybox.old 824919 9100 645216 1479235 169243 busybox
2006-06-03Remove #ifdeffed out code, both KEEP_UNUSED and #if 0.Rob Landley
2006-06-02Header cleanup: don't #include headers that libbb.h already includes.Rob Landley
2006-06-02#ifdef reduction.Rob Landley
2006-05-31Bugfix from Shaun Jackman: don't attempt to write 64 bytes and then fail ifRob Landley
the write wasn't 192 bytes long.
2006-05-31Use BB endianness macro.Rob Landley
2006-05-31- add CONFIG_FEATURE_WGET_LONG_OPTIONSBernhard Reutner-Fischer
2006-05-31- s/defined(__uClinux__)/BB_NOMMU/Bernhard Reutner-Fischer
This needs a second pass to: + add bb_daemon(unsigned char no_chdir, unsigned char no_close, const char*flag) + eventually globally export argc and argv, so we don't need to pass it to bb_daemon().
2006-05-29More size shrinkage.Rob Landley
2006-05-29Size reductions, mostly switching things to use libbb functions.Rob Landley
2006-05-29Remove _().Rob Landley
2006-05-28My first bout of untangling udhcp. Make lots of gratuitous #defines goRob Landley
away, substitutie BB_VER for an external VERSION, use busybox CONFIG symbols rather than checking for them then defining others, etc. Lots more cleanup to do...
2006-05-27Consolidate #include <sys/time.h> so libbb.h does it.Rob Landley
2006-05-26Change llist_add_* to take the address of the list rather than returning the newRob Landley
head, and change all the callers.
2006-05-26- add central knob to turn off getopt_long everywhere. EXPERIMENTAL!Bernhard Reutner-Fischer
Adds "Enable getopt long" under "General options", default y. Send patches to fix getopt_ulflags and run_parts.c if you turn this off.. See http://busybox.net/lists/busybox/2006-May/021828.html for a start to run-parts
2006-05-26fix spelling mistakesMike Frysinger
2006-05-25Remove a pointless #define.Rob Landley
2006-05-21Minor cleanups: Convert a few calloc() calls to xzalloc, remove unnecessaryRob Landley
memset, collate variable declarations...
2006-05-19Patch from Robert P. Day to remove #ifdefed out SLIP support code that weRob Landley
have no CONFIG option to enable, and which existing SLIP users don't seem to miss.
2006-05-19- remove emacs layout block as suggested by Robert P.J. DayBernhard Reutner-Fischer
- use shorter boilerplate while at it
2006-05-19- replace _PATH_DEVNULL with bb_dev_nullBernhard Reutner-Fischer
2006-05-19- include strings.hBernhard Reutner-Fischer
Thanks to Rich Felker for pointing this out.
2006-05-19- single KERNEL_VERSION(a,b,c) macro in platform.hBernhard Reutner-Fischer
- rename get_kernel_revision() to get_linux_version_code from Robert P. J. Day
2006-05-17Patch from Bernhard Fischer to remove some useless bits.Rob Landley
2006-05-13pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the ↵Mike Frysinger
mailing list
2006-05-13pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the ↵Mike Frysinger
mailing list
2006-05-11fix no previous prototype warningMike Frysinger
2006-05-11fix no previous prototype warningMike Frysinger
2006-05-11renameMike Frysinger
2006-05-11remove files not related to busyboxMike Frysinger
2006-05-10accept() takes a socklen_t, not an intMike Frysinger
2006-05-10fix whitespace in comment exampleMike Frysinger
2006-05-10some more useful debug info from Jason HoldenMike Frysinger
2006-05-10- add helptext for --retriesBernhard Reutner-Fischer
2006-05-10touchup whitespace/english a bit moreMike Frysinger
2006-05-10whitespace between if and (Mike Frysinger
2006-05-08re-enable udhcp in a few more placesMike Frysinger
2006-05-08add back in udhcp supportMike Frysinger
2006-05-07Remove bb_strlen() in favor of -fno-builtin-strlen. Saves as many bytesRob Landley
as the old optimization did (actually does slightly better under gcc 4.0), and simplifies the code.
2006-05-05Busybox's udhcp was deleted a while ago. Bolting an external project onto theRob Landley
tree doesn't change that.
2006-05-04CONFIG->ENABLE migration.Rob Landley
2006-04-28More usage.h cleanups, with collateral changes to httpd. Specifically,Rob Landley
most of our CONFIG entries switch stuff on instead of off when enabled, so fix the gratuitously reversed INETD thing.
2006-04-18- improve wording in some help texts a little bit.Bernhard Reutner-Fischer
2006-04-18- patch from P.J. Day to rely on the automatic indenting provided by depends.Bernhard Reutner-Fischer
2006-04-18- simplify config options of the ip applet.Bernhard Reutner-Fischer
2006-04-16kill off pointless malloc.h includeMike Frysinger