Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-17 | whitespace cleanup | Denis Vlasenko | |
2006-09-02 | ping(6): use htons instead of SWAP_BE. | Denis Vlasenko | |
2006-09-02 | ping: implement -I option | Denis Vlasenko | |
2006-09-02 | ping6: resolve interface name to number early. | Denis Vlasenko | |
gcc is more efficient at truncating int to int16 via cast, use that instead of &. | |||
2006-09-02 | Sync ping and ping6 a bit, fix style and indentation. | Denis Vlasenko | |
2006-09-02 | Fix endianness issue in ping6 | Denis Vlasenko | |
2006-07-11 | Add one-line GPL boilerplate to these source files. | "Robert P. J. Day" | |
2006-07-01 | More removal of "#if 0" content. | "Robert P. J. Day" | |
2006-06-19 | Make some 64 bit warnings go away on x86-64. | Rob Landley | |
2006-05-27 | Consolidate #include <sys/time.h> so libbb.h does it. | Rob Landley | |
2006-04-01 | Patch from KRONSTORFER Horst to Fix a size mismatch in ping, such as the 56/84 | Rob Landley | |
mismatch inthe following example: # ping -c 1 172.16.2.1 PING 172.16.2.1 (172.16.2.1): 56 data bytes 84 bytes from 172.16.2.1: icmp_seq=0 ttl=64 time=0.2 ms | |||
2006-03-22 | 2006-03-21 Shaun Jackman <sjackman@gmail.com>: Include signal.h instead of ↵ | Mike Frysinger | |
sys/signal.h. | |||
2006-03-13 | update comments as to what caused the defines to change | Mike Frysinger | |
2006-03-10 | fix building with glibc-2.4 | Mike Frysinger | |
2006-03-10 | Patch from Denis Vlasenko turning static const int (which gets emitted into | Rob Landley | |
the busybox binary) into enums (which don't). | |||
2006-03-06 | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | |
definitions. (That should only be on prototypes.) | |||
2006-01-25 | just whitespace | Tim Riker | |
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2003-05-22 | Patch from Russell Coker: | Eric Andersen | |
The attached patch fixes a compilation error. If you compile ping6 without the CONFIG_FEATURE_FANCY_PING6 option then the compile will fail without this patch. | |||
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2003-01-12 | Kiss Gabor noticed that ping compiled without BB_FEATURE_FANCY_PING | Eric Andersen | |
would return 0 instead of EXIT_FAILURE when no response was received. | |||
2002-11-26 | use #ifdef instead of #if | Glenn L McGrath | |
2002-07-03 | This patch from Bart Visscher <magick@linux-fan.com> adds | Eric Andersen | |
IPV6 support to busybox. This patch does the following: * Add IPv6 support to libbb * Enable IPv6 interface address display * Add IPv6 config option * Adds ping6, an adaptation of the ping applet for IPv6 * Adds support routines for ping6: - xgethostbyname2 - create_icmp6_socket * Adds ifconfig support for IPv6 * Add support IPv6 to netstat * Add IPv6 support to route Thanks Bart! |