Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | fix support for globally disabling --long-options. | Denis Vlasenko | 2006-11-29 | 3 | -26/+26 | |
| | | | | (disabling them saves ~4K on fully configured bbox) | |||||
* | od: sometime ago I landed BIG od implementation | Denis Vlasenko | 2006-11-28 | 2 | -7/+11 | |
| | | | | | from coreutils. My fault. This commit contains cleanups and size reductions. | |||||
* | udhcpc: fix my breakage | Denis Vlasenko | 2006-11-28 | 2 | -5/+3 | |
| | ||||||
* | do not overflow ifr_name. maybe it was safe in some places, | Denis Vlasenko | 2006-11-27 | 7 | -28/+28 | |
| | | | | but not everywhere. err to the safe side. | |||||
* | udhcpc: convert to getopt32 | Denis Vlasenko | 2006-11-27 | 3 | -171/+146 | |
| | ||||||
* | fix remaining survivors of the return(a) cleanup | Denis Vlasenko | 2006-11-27 | 1 | -5/+5 | |
| | ||||||
* | style cleanup: return(a) -> return a, part 2 | Denis Vlasenko | 2006-11-27 | 2 | -2/+2 | |
| | ||||||
* | style cleanup: return(a) -> return a, part 1 | Denis Vlasenko | 2006-11-27 | 1 | -4/+4 | |
| | ||||||
* | safe_strtoXX interface proved to be a bit unconvenient. | Denis Vlasenko | 2006-11-27 | 3 | -8/+13 | |
| | | | | | Remove it, introduce saner bb_strtoXX. Saved ~350 bytes. | |||||
* | ifconfig: do not try to continue on errors. not much sence in doing that | Denis Vlasenko | 2006-11-27 | 1 | -104/+58 | |
| | | | | IMHO, but requires extra code. | |||||
* | small fixes: | Denis Vlasenko | 2006-11-26 | 2 | -3/+3 | |
| | | | | | | fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc. | |||||
* | header_verbose_list: stop truncating file size in listing | Denis Vlasenko | 2006-11-24 | 3 | -5/+5 | |
| | ||||||
* | ifupdown: | Denis Vlasenko | 2006-11-23 | 1 | -6/+9 | |
| | | | | | ifconfig said to set iface up before it processes hw %hwaddress%, which then of course fails. Thus we run two separate ifconfig | |||||
* | ifupdown: save some 100+ bytes of code in addstr() | Denis Vlasenko | 2006-11-23 | 1 | -45/+35 | |
| | ||||||
* | wget: -O - still outputs progressbar (to stderr) | Denis Vlasenko | 2006-11-23 | 1 | -5/+6 | |
| | | | | Noticed dead code. -100 bytes. | |||||
* | add "wpad" DHCP option. Spotted some optimization opportunities: -80 bytes | Denis Vlasenko | 2006-11-23 | 4 | -54/+64 | |
| | ||||||
* | introduce setsockopt_reuseaddr(int fd), setsockopt_broadcast(int fd), | Denis Vlasenko | 2006-11-22 | 14 | -40/+27 | |
| | | | | | use them where appropriate. 200 bytes saved | |||||
* | telnetd: move generic stuff into libbb. It will make it easy | Denis Vlasenko | 2006-11-22 | 2 | -80/+4 | |
| | | | | to make other server applets IPv6-aware too. | |||||
* | telnetd: if FEATURE_IPV6 is on, telnet will NOT work on IPv4 | Denis Vlasenko | 2006-11-22 | 1 | -21/+65 | |
| | | | | which is kind of stupid | |||||
* | telnetd: we were having telnetd with is ONLY inetd or ONLY standalone. | Denis Vlasenko | 2006-11-22 | 2 | -357/+321 | |
| | | | | | What if I need to have both?? This patch introduces CONFIG_FEATURE_TELNETD_STANDALONE: y - both, n - only inetd. | |||||
* | #if HAVE_AFINET6 -> #ifdef HAVE_AFINET6 | Denis Vlasenko | 2006-11-22 | 1 | -18/+18 | |
| | ||||||
* | httpd: comment on QUERY_STRING | Denis Vlasenko | 2006-11-21 | 1 | -3/+7 | |
| | ||||||
* | httpd: add link to docs | Denis Vlasenko | 2006-11-21 | 1 | -0/+3 | |
| | ||||||
* | bb_INET_default[] is really just a const "default", | Denis Vlasenko | 2006-11-21 | 3 | -5/+5 | |
| | | | | nothing INET-specific | |||||
* | ifconfig: looks like char host[128] is not really needed. | Denis Vlasenko | 2006-11-21 | 1 | -4/+6 | |
| | ||||||
* | wget: yet another contortion for proftpd's PASV response. | Denis Vlasenko | 2006-11-21 | 1 | -4/+4 | |
| | ||||||
* | - add 'ip rule' support. First take.. | Bernhard Reutner-Fischer | 2006-11-21 | 11 | -25/+480 | |
| | | | | | text data bss dec hex filename 2999 0 0 2999 bb7 networking/libiproute/iprule.o | |||||
* | ifconfig: preparatory patch, no code changes | Denis Vlasenko | 2006-11-21 | 2 | -43/+43 | |
| | ||||||
* | - style fixes | Bernhard Reutner-Fischer | 2006-11-21 | 1 | -15/+16 | |
| | ||||||
* | wget: add TODO | Denis Vlasenko | 2006-11-21 | 1 | -0/+3 | |
| | ||||||
* | wget: fix ftp PASV mode ("numeric" check was too strict) | Denis Vlasenko | 2006-11-21 | 1 | -4/+6 | |
| | ||||||
* | wget: reduce likelihood of ETA overflow (especially with !LFS) | Denis Vlasenko | 2006-11-21 | 1 | -17/+19 | |
| | ||||||
* | httpd: slight reduction of #ifdef forest | Denis Vlasenko | 2006-11-21 | 5 | -61/+56 | |
| | | | | | | few other applets: #ifdef CONFIG_ -> #if ENABLE_ traceroute: fix exposed bugs defconfig: update | |||||
* | httpd: fix cgi-bin/index.cgi support, add example of it, | Denis Vlasenko | 2006-11-21 | 2 | -8/+74 | |
| | | | | | stat: fix end-of-line if format is specified (wasn't printing it), fix %z (time) format to match coreutils 6.3 | |||||
* | httpd: LC_TIME locale _must_ be POSIX to httpd! We speak over the net! | Denis Vlasenko | 2006-11-21 | 1 | -4/+11 | |
| | ||||||
* | httpd: add support for directory indexer (cgi-bin/index.cgi) | Denis Vlasenko | 2006-11-21 | 1 | -25/+29 | |
| | ||||||
* | httpd: get rid of big, useless blocks (deindent, | Denis Vlasenko | 2006-11-21 | 1 | -199/+197 | |
| | | | | bring code under 80 columns) | |||||
* | httpd: More robust Content-length: parsing, | Denis Vlasenko | 2006-11-21 | 1 | -84/+86 | |
| | | | | code reorganization (less indented) | |||||
* | dhcprelay: new applet | Denis Vlasenko | 2006-11-20 | 5 | -13/+375 | |
| | ||||||
* | add compile-time check for correct DHCP packet size | Denis Vlasenko | 2006-11-20 | 1 | -0/+4 | |
| | ||||||
* | login: use %s - we know that string is not too long there | Denis Vlasenko | 2006-11-20 | 2 | -112/+65 | |
| | | | | | ping[6]: use getopt32: smaller (-50 bytes) and handles -c6 correctly (was requiring '-c 6' with mandatory space) | |||||
* | rodata cleanup. "unable to" == "cannot". -300 bytes | Denis Vlasenko | 2006-11-18 | 2 | -3/+3 | |
| | ||||||
* | small fixes: using fd-based io instead of FILE*-based, | Denis Vlasenko | 2006-11-18 | 4 | -48/+49 | |
| | | | | missed O_TRUNC, etc | |||||
* | udhcp: fix indentation and style. | Denis Vlasenko | 2006-11-18 | 33 | -642/+332 | |
| | | | | | Eliminate (group) a lot of smallish *.h files Remove lots of unneeded #includes | |||||
* | add -Wundef, fix uncovered bugs | Denis Vlasenko | 2006-11-17 | 7 | -7/+7 | |
| | ||||||
* | httpd: make Bernhard happier | Denis Vlasenko | 2006-11-17 | 1 | -2/+4 | |
| | ||||||
* | httpd: reduce ifdef forest. comment out redundant PATH setting | Denis Vlasenko | 2006-11-16 | 1 | -86/+76 | |
| | ||||||
* | httpd: | Denis Vlasenko | 2006-11-16 | 1 | -22/+17 | |
| | | | | | | | | fix union aliasing bug symptom: wget of non-existent file gets redirected to /text/html/something on second and subsequend wget attempts fix double-free bug symptom: glibc caught double-free (we didn't NULL config->xxx ptrs after free) | |||||
* | httpd: add -i (inetd) and -f (foreground) otions. | Denis Vlasenko | 2006-11-16 | 2 | -88/+51 | |
| | | | | | -i makes possible to run httpd in both inetd and standalone mode without recompile (or need to have two different binaries) | |||||
* | httpd: stop being silly with setenv | Denis Vlasenko | 2006-11-16 | 1 | -61/+28 | |
| |