summaryrefslogtreecommitdiff
path: root/networking (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* add open_read_close() and similar stuffDenis Vlasenko2006-10-1411-22/+19
|
* bb_get_[chomped]line_from_file wasn't descriptive enough.Denis Vlasenko2006-10-123-3/+3
| | | | Renaming...
* small style fixesDenis Vlasenko2006-10-122-4/+4
|
* ifupdown: stop emitting annoying/misleading error messages.Denis Vlasenko2006-10-111-33/+55
| | | | Patch by Gabriel Somlo <somlo at cmu.edu>
* fixes from Vladimir Dronnikov <dronnikov@gmail.ru>Denis Vlasenko2006-10-101-0/+2
|
* correct largefile support, add comments about it.Denis Vlasenko2006-10-083-23/+25
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-0818-169/+119
|
* dd: make it recognize not only 'k' but 'K' too;Denis Vlasenko2006-10-072-26/+2
| | | | make it (partially) CONFIG_LFS-aware
* wget: don't be careless with xstrdup'ingDenis Vlasenko2006-10-071-18/+24
|
* wget: fix download of URLs like:Denis Vlasenko2006-10-071-6/+30
| | | | | | http://busybox.net?var=a/b http://busybox.net?login=john@doe http://busybox.net#test/test
* dnsd fix; option_mask32 added. dnsd needs more love.Denis Vlasenko2006-10-062-75/+80
|
* eject: -T fixDenis Vlasenko2006-10-051-4/+2
|
* httpd: add -u user[:grp] supportDenis Vlasenko2006-10-051-8/+22
|
* build system overhaulDenis Vlasenko2006-10-0511-460/+285
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-039-11/+11
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-0319-39/+39
| | | | | | | | 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.
* rename bb_default_error_retval -> xfunc_error_retvalDenis Vlasenko2006-10-031-1/+1
|
* lots of silly indent fixesDenis Vlasenko2006-10-034-26/+26
|
* traceroute: fix compilation if netinet/protocols.h is missingDenis Vlasenko2006-10-031-25/+13
|
* traceroute: do not look up icmp protocol# in /etc, it is well-known :)Denis Vlasenko2006-10-031-7/+2
|
* ifupdown: Debian users contributed improvement to itDenis Vlasenko2006-10-021-23/+27
|
* wget: make progress bar and ETA work correctly with -cDenis Vlasenko2006-10-011-35/+37
|
* lsmod: repair indentationDenis Vlasenko2006-09-301-95/+91
| | | | httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos)
* vconfig: fix bug 701 (I be damned if I understand it)Denis Vlasenko2006-09-301-2/+3
|
* libiproute/ll_map.c: fix bug 279Denis Vlasenko2006-09-301-6/+30
| | | | ("On-demand net module loading fails with CONFIG_FEATURE_IFUPDOWN_IP")
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-293-5/+5
|
* rt_names.c: move few strings into rodataDenis Vlasenko2006-09-281-10/+9
|
* ifupdown: make dhcp start/stop scripts user configurableDenis Vlasenko2006-09-281-0/+16
| | | | in /etc/network/interfaces. Patch author is Gabriel L. Somlo <somlo@cmu.edu>
* silly switch style fixDenis Vlasenko2006-09-272-2/+2
|
* ifupdown: fix for standalone shell; removed hardcoded PATHDenis Vlasenko2006-09-271-41/+23
|
* ifupdown: style cleanup, no code changesDenis Vlasenko2006-09-261-266/+260
|
* several fixes from openWRT projectDenis Vlasenko2006-09-264-3/+17
|
* httpd: sanitize indentationDenis Vlasenko2006-09-261-1213/+1209
|
* wget: add (configurable) large file support. Run tested.Denis Vlasenko2006-09-261-53/+63
|
* wget: fix bug where wget creates null file if there is no remote one.Denis Vlasenko2006-09-231-78/+38
| | | | add O_LARGEFILE support (not run tested :).
* inetd: deindent main loop, other readability enhancementsDenis Vlasenko2006-09-231-145/+151
|
* inetd: reformat with tabs for indentationDenis Vlasenko2006-09-231-1217/+1220
|
* ifupdown: getopt_ulflags'ification.Denis Vlasenko2006-09-231-59/+29
|
* arping: fix bug (getopt_ulflags and optarg don't mix),Denis Vlasenko2006-09-231-24/+16
| | | | remove unreachable error path.
* netstat: getopt_ulflags'isationDenis Vlasenko2006-09-221-61/+46
|
* hostname: getopt_ulflags'isationDenis Vlasenko2006-09-221-39/+28
|
* telnetd: getopt_ulflags'isationDenis Vlasenko2006-09-221-32/+12
|
* whitespace cleanupDenis Vlasenko2006-09-178-18/+18
|
* So, in the cornucopia of superfulous warning directives I didn't add to theRob Landley2006-09-151-1/+1
| | | | | | | | | | | | | | | | | 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).
* - convert a few xopen3(,,0) into xopen(,). Also peruse the fact that xopen ↵Bernhard Reutner-Fischer2006-09-111-1/+1
| | | | | | | | | | | | | | | | | | | | 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
* Build fixes for gcc 4.0 with -Werror, from Tito.Rob Landley2006-09-111-1/+1
|
* wget: wrap one atrociously long line (around 200 chars long!).Denis Vlasenko2006-09-091-18/+25
|
* udhcp: FEATURE_UDHCP_SYSLOG should be selected only ifDenis Vlasenko2006-09-091-2/+1
| | | | | udhcp[cd] really are going to use it.
* Fix (hopefully) bug 976. Need more thorough audit.Denis Vlasenko2006-09-075-11/+27
| | | | | Restore erroneously removed FEATURE_UDHCP_SYSLOG.
* Add CONFIG_FEATURE_SYSLOG which controls whetherDenis Vlasenko2006-09-072-10/+7
| | | | | | | | bb_xx_msg will ever try to send output to syslog. Add "select CONFIG_FEATURE_SYSLOG" to relevant applets. This allows to omit syslog code if we do not have any syslog-capable applets in the build.