aboutsummaryrefslogtreecommitdiff
path: root/networking
AgeCommit message (Collapse)Author
2006-10-20message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko
2006-10-16strip -> $(STRIP); fix "unused variable" warningDenis Vlasenko
(patch by Diekema, Jon (AGRE) <Jon.Diekema@smiths-aerospace.com>)
2006-10-16nc: fix 2 my own buglets, and few someone else's too.Denis Vlasenko
2006-10-15telnetd: check ptsname() for NULLDenis Vlasenko
2006-10-15wget: xatoi's were oversealous ("200 OK" isn't a number)Denis Vlasenko
2006-10-14add open_read_close() and similar stuffDenis Vlasenko
2006-10-12bb_get_[chomped]line_from_file wasn't descriptive enough.Denis Vlasenko
Renaming...
2006-10-12small style fixesDenis Vlasenko
2006-10-11ifupdown: stop emitting annoying/misleading error messages.Denis Vlasenko
Patch by Gabriel Somlo <somlo at cmu.edu>
2006-10-10fixes from Vladimir Dronnikov <dronnikov@gmail.ru>Denis Vlasenko
2006-10-08correct largefile support, add comments about it.Denis Vlasenko
2006-10-08attempt to regularize atoi mess.Denis Vlasenko
2006-10-07dd: make it recognize not only 'k' but 'K' too;Denis Vlasenko
make it (partially) CONFIG_LFS-aware
2006-10-07wget: don't be careless with xstrdup'ingDenis Vlasenko
2006-10-07wget: fix download of URLs like:Denis Vlasenko
http://busybox.net?var=a/b http://busybox.net?login=john@doe http://busybox.net#test/test
2006-10-06dnsd fix; option_mask32 added. dnsd needs more love.Denis Vlasenko
2006-10-05eject: -T fixDenis Vlasenko
2006-10-05httpd: add -u user[:grp] supportDenis Vlasenko
2006-10-05build system overhaulDenis Vlasenko
2006-10-03bb_applet_name -> applet_nameDenis Vlasenko
2006-10-03getopt_ulflags -> getopt32.Denis Vlasenko
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit.
2006-10-03rename bb_default_error_retval -> xfunc_error_retvalDenis Vlasenko
2006-10-03lots of silly indent fixesDenis Vlasenko
2006-10-03traceroute: fix compilation if netinet/protocols.h is missingDenis Vlasenko
2006-10-03traceroute: do not look up icmp protocol# in /etc, it is well-known :)Denis Vlasenko
2006-10-02ifupdown: Debian users contributed improvement to itDenis Vlasenko
2006-10-01wget: make progress bar and ETA work correctly with -cDenis Vlasenko
2006-09-30lsmod: repair indentationDenis Vlasenko
httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos)
2006-09-30vconfig: fix bug 701 (I be damned if I understand it)Denis Vlasenko
2006-09-30libiproute/ll_map.c: fix bug 279Denis Vlasenko
("On-demand net module loading fails with CONFIG_FEATURE_IFUPDOWN_IP")
2006-09-29Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko
2006-09-28rt_names.c: move few strings into rodataDenis Vlasenko
2006-09-28ifupdown: make dhcp start/stop scripts user configurableDenis Vlasenko
in /etc/network/interfaces. Patch author is Gabriel L. Somlo <somlo@cmu.edu>
2006-09-27silly switch style fixDenis Vlasenko
2006-09-27ifupdown: fix for standalone shell; removed hardcoded PATHDenis Vlasenko
2006-09-26ifupdown: style cleanup, no code changesDenis Vlasenko
2006-09-26several fixes from openWRT projectDenis Vlasenko
2006-09-26httpd: sanitize indentationDenis Vlasenko
2006-09-26wget: add (configurable) large file support. Run tested.Denis Vlasenko
2006-09-23wget: fix bug where wget creates null file if there is no remote one.Denis Vlasenko
add O_LARGEFILE support (not run tested :).
2006-09-23inetd: deindent main loop, other readability enhancementsDenis Vlasenko
2006-09-23inetd: reformat with tabs for indentationDenis Vlasenko
2006-09-23ifupdown: getopt_ulflags'ification.Denis Vlasenko
2006-09-23arping: fix bug (getopt_ulflags and optarg don't mix),Denis Vlasenko
remove unreachable error path.
2006-09-22netstat: getopt_ulflags'isationDenis Vlasenko
2006-09-22hostname: getopt_ulflags'isationDenis Vlasenko
2006-09-22telnetd: getopt_ulflags'isationDenis Vlasenko
2006-09-17whitespace cleanupDenis Vlasenko
2006-09-15So, in the cornucopia of superfulous warning directives I didn't add to theRob Landley
tree, we have the warning about failed inlines (which with our inline limit set to zero means any usage of the "inline" keyword at all). Note that setting the inline limit to zero, and using -Werror, both predated adding the warning about inlines to the tree. So whatever checkin added that did nothing but break the tree. But oh well. The second category of superfluous warnings is warning about functions with no previous declaration. Apparently, if you add ALWAYS_INLINE to an empty function definition, it considers the sucker undeclared as far as the warning is concerned. (I.E. it's a buggy warning. I try not to ask the compiler to generate warnings it can't competently generate.) This is why I removed "inline" (unbreak allbareconfig), and couldn't replace it with "ALWAYS_INLINE" (still broke allbareconfig).
2006-09-11- convert a few xopen3(,,0) into xopen(,). Also peruse the fact that xopen ↵Bernhard Reutner-Fischer
defaults to 0777 on it's own, so we don't need to xopen3(,,0777). Saves a few bytes: $ size busybox.old busybox text data bss dec hex filename 839676 8780 243592 1092048 10a9d0 busybox.old 839660 8780 243592 1092032 10a9c0 busybox $ make CC=gcc-4.2-HEAD bloatcheck function old new delta static.vconfig_main 281 279 -2 static.rx_main 1076 1074 -2 static.mt_main 294 292 -2 static.gzip_main 753 751 -2 static.mkfs_minix_main 4034 4030 -4 static.unzip_main 1771 1766 -5 static.crontab_main 1513 1507 -6 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/7 up/down: 0/-23) Total: -23 bytes