summaryrefslogtreecommitdiff
path: root/networking (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* assorted fixes for bugs found with randomconfigDenis Vlasenko2007-02-032-2/+3
|
* - update helptextBernhard Reutner-Fischer2007-02-021-0/+1
|
* add a comment so that people won't get confusedDenis Vlasenko2007-02-021-0/+1
|
* httpd: directory indexer example doesn't need piping thru dd anymoreDenis Vlasenko2007-02-021-5/+0
|
* trivial warning fixDenis Vlasenko2007-02-021-1/+1
|
* udhcpd: allow "domain" to be a list of DNS servers, not just oneDenis Vlasenko2007-02-022-13/+21
|
* correct wget's commentDenis Vlasenko2007-02-011-1/+1
|
* preparatory patch for -Wwrite-strings #8 (missed part)Denis Vlasenko2007-01-302-9/+7
|
* preparatory patch for -Wwrite-strings #6Denis Vlasenko2007-01-294-17/+6
|
* preparatory patch for -Wwrite-strings #5Denis Vlasenko2007-01-298-36/+26
|
* preparatory patch for -Wwrite-strings #4Denis Vlasenko2007-01-297-34/+30
|
* preparatory patch for -Wwrite-strings #2Denis Vlasenko2007-01-2913-32/+33
|
* taskset: fix incorrect rage spec and allow 0xXXX inputDenis Vlasenko2007-01-291-37/+30
| | | | ping: shave off 60 bytes
* work around gcc bugDenis Vlasenko2007-01-281-1/+3
|
* - reinstate static for the command string arrray to be gentle to gcc-3.xBernhard Reutner-Fischer2007-01-281-1/+1
|
* - use uint32_t as suggested by vda.Bernhard Reutner-Fischer2007-01-281-7/+9
| | | | | | | - minor size- and readability tweaks while at it: text data bss dec hex filename 2631 0 0 2631 a47 networking/libiproute/iprule.o.orig 2596 0 0 2596 a24 networking/libiproute/iprule.o
* ether-wake: remove #warningDenis Vlasenko2007-01-271-2/+0
|
* use bb_sanitize_stdio() where appropriateDenis Vlasenko2007-01-272-19/+3
|
* fix numbering in switch(): we don't have "del" anymore,Denis Vlasenko2007-01-272-14/+16
| | | | | substring match on "delete" handles it ok. But we (I?) forgot to renumber case labels...
* fix option -F mishandlingDenis Vlasenko2007-01-261-1/+1
|
* arping: stop using last gethostbyname2 in the treeDenis Vlasenko2007-01-252-10/+9
| | | | hostname: small optimization
* accidentally applied wrong (old) patch, fixing up...Denis Vlasenko2007-01-251-8/+7
|
* opt_complementary doesn't like numeric opts :(Denis Vlasenko2007-01-241-1/+1
|
* Unify ping and ping6. ping has -4 and -6 which forceDenis Vlasenko2007-01-244-554/+458
| | | | | | | | name resolution into IP or IPv6 only, otherwise we take address family returned by host2sockaddr() in lsa->sa.sa_family. IOW: "ping ::1" with do IPv6 ping, "ping 127.0.0.1" will do IPv4 ping. ping6 is aliased to "ping -6".
* hostname declaration was misplacedDenis Vlasenko2007-01-241-2/+2
|
* accumulated post-1.4.0 fixesDenis Vlasenko2007-01-242-4/+9
|
* combine depends linesMike Frysinger2007-01-241-2/+1
|
* - rtnl_rttable_a2n wants an unsigned int32Bernhard Reutner-Fischer2007-01-231-1/+1
|
* remove empty source filesDenis Vlasenko2007-01-221-1/+0
|
* clean up commented out old codeDenis Vlasenko2007-01-225-448/+13
|
* ping6: stop using xgethostbyname2, remove it from libbb.Denis Vlasenko2007-01-222-21/+28
|
* nslookup: full circle. Here we started IPv6 work. Use "new API"Denis Vlasenko2007-01-221-29/+88
| | | | and thus save a few bytes.
* - forgot to include ip_common.hBernhard Reutner-Fischer2007-01-221-2/+3
|
* - sed -i -e "/\$Id:/d;"Bernhard Reutner-Fischer2007-01-225-5/+0
|
* cleanups: unnecessary casts, unified const_1, eliminate cross-.c fileDenis Vlasenko2007-01-2210-226/+192
| | | | | prototypes (heresy!), add spaces in places like "flags&NETSTAT_CONNECTED", removed unused #defines, #ifdef -> #if, use uint32_t for ipv4 addrs.
* dnsd: getfileentry was leaking memoryDenis Vlasenko2007-01-221-11/+15
| | | | mount: improve readability
* exterminate u_intXXX.Denis Vlasenko2007-01-225-65/+71
| | | | fix ping6 buglet (memset is too short), minor sync between ping and ping6
* comment out unused old networking API partsDenis Vlasenko2007-01-222-3/+3
| | | | sockaddr2dotted: return IPV6 addrs in [addr]:port form (was addr:port)
* remove obsolete FEATURE_WGET_IP6_LITERALDenis Vlasenko2007-01-222-37/+0
|
* fixing bugs revealed by randomconfig runsDenis Vlasenko2007-01-202-3/+7
|
* fixes for amd64 compilationDenis Vlasenko2007-01-202-7/+10
|
* strdup -> xstrdupDenis Vlasenko2007-01-191-1/+1
| | | | sed: de-obfuscate piece of code
* openvt,getty,vfork_daemon_rexec,mount: tighten up fd cleanup codeDenis Vlasenko2007-01-195-9/+16
| | | | | | | | | (will close all fd's > 2 on daemonization now) getty: fix "getty -" support, and also do not try to chown/chmod "-" telnetd: fix "lost ctty" bug Yet another attempt on saner function names: bb_sanitize_server_stdio(0/1) -> bb_sanitize_stdio() + bb_daemonize();
* fix potentially misaligned 32-bit accessesDenis Vlasenko2007-01-181-3/+6
|
* httpd: use fd#1 in inetd modeDenis Vlasenko2007-01-142-5/+11
| | | | inetd: micro style fix
* inetd: preparatory patch, no code changesDenis Vlasenko2007-01-141-63/+64
|
* Rename bb_sanitize_stdio -> bb_sanitize_server_stdioDenis Vlasenko2007-01-142-9/+14
| | | | | | (name is still bad - it doesn't hint that function may do daemonization trick for you if asked to). Small fixes to fakeidentd.
* small size optimizationDenis Vlasenko2007-01-141-2/+3
|
* isrv.h: add copyright infoDenis Vlasenko2007-01-141-0/+10
|
* I forgot "svn add" AGAIN! :(Denis Vlasenko2007-01-141-0/+23
|