summaryrefslogtreecommitdiff
path: root/networking (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* fixes from Yann E. MORIN <yann.morin.1998@anciens.enib.fr>Denis Vlasenko2006-12-312-5/+7
|
* done a dozen of randconfig test. guess what? ALL failed...Denis Vlasenko2006-12-301-21/+23
| | | | these are resulting fixes
* merge post-1.3.0 fixesDenis Vlasenko2006-12-261-1/+2
|
* properly export externs thru *.h filesDenis Vlasenko2006-12-262-6/+0
|
* style fixesDenis Vlasenko2006-12-267-10/+10
| | | | last xcalloc replaced by xzalloc
* use xbind, xconnect where appropriate.Denis Vlasenko2006-12-233-83/+51
| | | | small edits to arping
* remove useless casts (type*) xzalloc(...)Denis Vlasenko2006-12-221-3/+1
|
* Always use /usr/share/udhcpc/default.script ([/usr] was depending on CONFIG_xx)Denis Vlasenko2006-12-221-5/+1
|
* tar et al: die if bb_copyfd_size copies less than asked for.Denis Vlasenko2006-12-221-15/+14
| | | | (we have bb_copyfd_exact_size now for that kind of usage)
* introduce LONE_CHAR (optimized strcmp with one-char string)Denis Vlasenko2006-12-212-2/+2
|
* remove casts from xmalloc()Denis Vlasenko2006-12-191-4/+2
|
* ifupdown: do not print and/or execute empty commands ("").Denis Vlasenko2006-12-191-9/+7
|
* ifupdown: parse() returning NULL and returning "" is not the same,Denis Vlasenko2006-12-191-11/+14
| | | | it turned out! wow... okay, fixing my buglet...
* u_short, ulong exterminatedDenis Vlasenko2006-12-194-24/+22
| | | | fdiskXXX: add a bit of sanity (not enough by far)
* - use xlisten/xsocket some more. Saves .25 kBBernhard Reutner-Fischer2006-12-196-35/+9
|
* nc: add missing castDenis Vlasenko2006-12-181-1/+1
| | | | xfuncs: add dprintf for dietlibc
* A bunch of defined(__GLIBC__) added. static-linking warning expandedDenis Vlasenko2006-12-187-8/+7
|
* ifupdown: strlen(NULL) is a no-no, fixed. Also few micro-optimizationsDenis Vlasenko2006-12-181-80/+76
|
* httpd: we don't have FEATURE_HTTPD_WITHOUT_INETD anymore,Denis Vlasenko2006-12-171-3/+3
| | | | remove it from Config.in
* tftp: corrupted input packets were killing retransmits - fixedDenis Vlasenko2006-12-171-18/+22
|
* inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid]Denis Vlasenko2006-12-164-7/+6
|
* wget: smallish optimizationDenis Vlasenko2006-12-161-18/+18
|
* re-applying first post-1.3.x changeDenis Vlasenko2006-12-151-0/+12
| | | | version change to 1.4.0.svn
* back out last change - need to make busybox-1_3-stable branch firstDenis Vlasenko2006-12-151-12/+0
|
* - table support for ip routeBernhard Reutner-Fischer2006-12-141-0/+12
|
* - Proposed fix to make aliases work (with uClibc-current).Bernhard Reutner-Fischer2006-12-071-2/+5
| | | | See comment in the patch about the change introduced in r16342.
* - Improve wording in error message.Bernhard Reutner-Fischer2006-12-071-1/+1
|
* - make sure we pickup the correct defines. Guards against 2.6.19 kernel-headers.Bernhard Reutner-Fischer2006-12-041-1/+6
|
* - provide central knob to turn off RPC related options.Bernhard Reutner-Fischer2006-12-011-2/+2
|
* httpd: fix decode of '/' when called via -dDenis Vlasenko2006-11-291-32/+34
|
* fix support for globally disabling --long-options.Denis Vlasenko2006-11-293-26/+26
| | | | (disabling them saves ~4K on fully configured bbox)
* od: sometime ago I landed BIG od implementationDenis Vlasenko2006-11-282-7/+11
| | | | | from coreutils. My fault. This commit contains cleanups and size reductions.
* udhcpc: fix my breakageDenis Vlasenko2006-11-282-5/+3
|
* do not overflow ifr_name. maybe it was safe in some places,Denis Vlasenko2006-11-277-28/+28
| | | | but not everywhere. err to the safe side.
* udhcpc: convert to getopt32Denis Vlasenko2006-11-273-171/+146
|
* fix remaining survivors of the return(a) cleanupDenis Vlasenko2006-11-271-5/+5
|
* style cleanup: return(a) -> return a, part 2Denis Vlasenko2006-11-272-2/+2
|
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-271-4/+4
|
* safe_strtoXX interface proved to be a bit unconvenient.Denis Vlasenko2006-11-273-8/+13
| | | | | Remove it, introduce saner bb_strtoXX. Saved ~350 bytes.
* ifconfig: do not try to continue on errors. not much sence in doing thatDenis Vlasenko2006-11-271-104/+58
| | | | IMHO, but requires extra code.
* small fixes:Denis Vlasenko2006-11-262-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 listingDenis Vlasenko2006-11-243-5/+5
|
* ifupdown:Denis Vlasenko2006-11-231-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 Vlasenko2006-11-231-45/+35
|
* wget: -O - still outputs progressbar (to stderr)Denis Vlasenko2006-11-231-5/+6
| | | | Noticed dead code. -100 bytes.
* add "wpad" DHCP option. Spotted some optimization opportunities: -80 bytesDenis Vlasenko2006-11-234-54/+64
|
* introduce setsockopt_reuseaddr(int fd), setsockopt_broadcast(int fd),Denis Vlasenko2006-11-2214-40/+27
| | | | | use them where appropriate. 200 bytes saved
* telnetd: move generic stuff into libbb. It will make it easyDenis Vlasenko2006-11-222-80/+4
| | | | to make other server applets IPv6-aware too.
* telnetd: if FEATURE_IPV6 is on, telnet will NOT work on IPv4Denis Vlasenko2006-11-221-21/+65
| | | | which is kind of stupid
* telnetd: we were having telnetd with is ONLY inetd or ONLY standalone.Denis Vlasenko2006-11-222-357/+321
| | | | | What if I need to have both?? This patch introduces CONFIG_FEATURE_TELNETD_STANDALONE: y - both, n - only inetd.