This patch from Bart Visscher <magick@linux-fan.com> adds
authorEric Andersen <andersen@codepoet.org>
Wed, 3 Jul 2002 11:46:38 +0000 (11:46 -0000)
committerEric Andersen <andersen@codepoet.org>
Wed, 3 Jul 2002 11:46:38 +0000 (11:46 -0000)
commit51b8bd68bb22b1cc5d95e418813c2f08a194ec2b
tree905d4f1b1e557950272ac98e1540fa06f732f42f
parent599e3ce163c43c3dfb24d06f8f707c783bc9ab9c
This patch from Bart Visscher <magick@linux-fan.com> adds
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!
15 files changed:
include/applets.h
include/inet_common.h
include/libbb.h
include/usage.h
libbb/Makefile.in
libbb/create_icmp6_socket.c [new file with mode: 0644]
libbb/inet_common.c
libbb/interface.c
libbb/xgethostbyname2.c [new file with mode: 0644]
networking/Makefile.in
networking/config.in
networking/ifconfig.c
networking/netstat.c
networking/ping6.c [new file with mode: 0644]
networking/route.c