diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-24 23:53:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-24 23:53:22 +0000 |
commit | b9a279ba9466d8733261aff1bab0d3ec1031c34c (patch) | |
tree | 6a995795abf0322f540585a6c4d28847fbebb773 /networking/Kbuild | |
parent | 677cb5eea52f2424bef1fd0fcc6ed3c8c8b5f1d5 (diff) | |
download | busybox-w32-b9a279ba9466d8733261aff1bab0d3ec1031c34c.tar.gz busybox-w32-b9a279ba9466d8733261aff1bab0d3ec1031c34c.tar.bz2 busybox-w32-b9a279ba9466d8733261aff1bab0d3ec1031c34c.zip |
Unify ping and ping6. ping has -4 and -6 which force
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".
Diffstat (limited to 'networking/Kbuild')
-rw-r--r-- | networking/Kbuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/Kbuild b/networking/Kbuild index 65ecfbf5f..68d36132d 100644 --- a/networking/Kbuild +++ b/networking/Kbuild | |||
@@ -29,7 +29,7 @@ lib-$(CONFIG_NC) += nc.o | |||
29 | lib-$(CONFIG_NETSTAT) += netstat.o | 29 | lib-$(CONFIG_NETSTAT) += netstat.o |
30 | lib-$(CONFIG_NSLOOKUP) += nslookup.o | 30 | lib-$(CONFIG_NSLOOKUP) += nslookup.o |
31 | lib-$(CONFIG_PING) += ping.o | 31 | lib-$(CONFIG_PING) += ping.o |
32 | lib-$(CONFIG_PING6) += ping6.o | 32 | lib-$(CONFIG_PING6) += ping.o |
33 | lib-$(CONFIG_ROUTE) += route.o | 33 | lib-$(CONFIG_ROUTE) += route.o |
34 | lib-$(CONFIG_TELNET) += telnet.o | 34 | lib-$(CONFIG_TELNET) += telnet.o |
35 | lib-$(CONFIG_TELNETD) += telnetd.o | 35 | lib-$(CONFIG_TELNETD) += telnetd.o |