summaryrefslogtreecommitdiff
path: root/networking/traceroute.c
Commit message (Expand)AuthorAgeFilesLines
* add -fvisibility=hidden to CC flags, mark XXX_main functionsDenis Vlasenko2007-10-111-1/+1
* introduce bb_putchar(). saves ~1800 on uclibc (less on glibc).Denis Vlasenko2007-09-271-1/+1
* introduce safe_poll (fixes a problem in top)Denis Vlasenko2007-09-271-1/+1
* *: replace select-for-one descriptor with poll, it's smaller.Denis Vlasenko2007-09-071-15/+9
* don't pass argc in getopt32, it's superfluousDenis Vlasenko2007-08-181-1/+1
* introduce and use xdup2(int, int)Denis Vlasenko2007-08-181-1/+1
* trylink: produce even more info about final link stageDenis Vlasenko2007-08-121-1/+1
* xioctl and friends by Tito <farmatito@tiscali.it>Denis Vlasenko2007-07-141-2/+2
* devfsd: style cleanup; size reduction (Tito <farmatito@tiscali.it>)Denis Vlasenko2007-06-271-2/+2
* networking/interface.c: huke remaining big statics; use malloc for INET[6]_rr...Denis Vlasenko2007-06-191-10/+8
* hwclock: size optimizationsDenis Vlasenko2007-06-171-35/+18
* traceroute: stop using floating point needlessly; nuke useless assignment.Denis Vlasenko2007-06-141-14/+9
* moved biggest stack buffers to malloc space, or made their size configurableDenis Vlasenko2007-06-101-16/+23
* usage.c: remove reference to busybox.hDenis Vlasenko2007-05-261-1/+1
* sourse_route_list -> source_route_listDenis Vlasenko2007-04-131-6/+6
* - add xsendto and use where appropriate; shrink iplink; sanitize libiproute a...Bernhard Reutner-Fischer2007-04-121-8/+5
* style fixes, no code changes.Denis Vlasenko2007-04-111-1/+1
* - sed -e "s/char[[:space:]]*\*[[:space:]]*argv\[\]/char **argv/g"Bernhard Reutner-Fischer2007-04-041-2/+2
* traceroute: move data off bss. small code optimizations.Denis Vlasenko2007-03-291-94/+109
* ifconfig: use IPv6 infrastructureDenis Vlasenko2007-02-041-1/+1
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-031-2/+2
* use bb_sanitize_stdio() where appropriateDenis Vlasenko2007-01-271-4/+2
* cleanups: unnecessary casts, unified const_1, eliminate cross-.c fileDenis Vlasenko2007-01-221-21/+19
* exterminate u_intXXX.Denis Vlasenko2007-01-221-14/+14
* style fixesDenis Vlasenko2006-12-261-1/+1
* remove useless casts (type*) xzalloc(...)Denis Vlasenko2006-12-221-3/+1
* u_short, ulong exterminatedDenis Vlasenko2006-12-191-17/+15
* introduce setsockopt_reuseaddr(int fd), setsockopt_broadcast(int fd),Denis Vlasenko2006-11-221-1/+2
* httpd: slight reduction of #ifdef forestDenis Vlasenko2006-11-211-32/+35
* add open_read_close() and similar stuffDenis Vlasenko2006-10-141-4/+4
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-52/+22
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-031-1/+1
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-031-3/+3
* lots of silly indent fixesDenis Vlasenko2006-10-031-8/+8
* 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
* Implement optional syslog logging using ordinaryDenis Vlasenko2006-09-061-4/+4
* - typo: s/optarg/nprobes_str; fixes segfault as reported by Raphael HUCKBernhard Reutner-Fischer2006-08-181-1/+1
* Remove xcalloc() and convert its callers to xzalloc(). About half of themRob Landley2006-08-031-5/+5
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-8/+8
* Convert setuid/setgid users to xsetuid/xsetgid.Rob Landley2006-07-161-5/+3
* A couple things that got tangled up in my tree, easier to check in both thanRob Landley2006-07-121-5/+5
* Consolidate #include <sys/time.h> so libbb.h does it.Rob Landley2006-05-271-1/+0
* kill off pointless malloc.h includeMike Frysinger2006-04-161-1/+0
* kill pointless memory.h includesMike Frysinger2006-04-161-1/+0
* - patch from Denis Vlasenko to add bb_xbind() and bb_xlisten()Bernhard Reutner-Fischer2006-04-121-3/+1
* - patch from Denis Vlasenko to add and use bb_xsocket() and to useBernhard Reutner-Fischer2006-04-121-8/+4
* Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x)Rob Landley2006-03-011-4/+2
* rfelker writes in Bug 740: s/u_char/unsigned char/Mike Frysinger2006-02-191-17/+17
* - add and use ATTRIBUTE_ALIGNED(num_bytes)Bernhard Reutner-Fischer2006-01-311-1/+1