diff options
Diffstat (limited to 'networking/ping.c')
-rw-r--r-- | networking/ping.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/networking/ping.c b/networking/ping.c index d75747984..efd4f210b 100644 --- a/networking/ping.c +++ b/networking/ping.c | |||
@@ -29,6 +29,22 @@ | |||
29 | #include <netinet/ip_icmp.h> | 29 | #include <netinet/ip_icmp.h> |
30 | #include "libbb.h" | 30 | #include "libbb.h" |
31 | 31 | ||
32 | #ifdef __BIONIC__ | ||
33 | /* should be in netinet/ip_icmp.h */ | ||
34 | # define ICMP_DEST_UNREACH 3 /* Destination Unreachable */ | ||
35 | # define ICMP_SOURCE_QUENCH 4 /* Source Quench */ | ||
36 | # define ICMP_REDIRECT 5 /* Redirect (change route) */ | ||
37 | # define ICMP_ECHO 8 /* Echo Request */ | ||
38 | # define ICMP_TIME_EXCEEDED 11 /* Time Exceeded */ | ||
39 | # define ICMP_PARAMETERPROB 12 /* Parameter Problem */ | ||
40 | # define ICMP_TIMESTAMP 13 /* Timestamp Request */ | ||
41 | # define ICMP_TIMESTAMPREPLY 14 /* Timestamp Reply */ | ||
42 | # define ICMP_INFO_REQUEST 15 /* Information Request */ | ||
43 | # define ICMP_INFO_REPLY 16 /* Information Reply */ | ||
44 | # define ICMP_ADDRESS 17 /* Address Mask Request */ | ||
45 | # define ICMP_ADDRESSREPLY 18 /* Address Mask Reply */ | ||
46 | #endif | ||
47 | |||
32 | //config:config PING | 48 | //config:config PING |
33 | //config: bool "ping" | 49 | //config: bool "ping" |
34 | //config: default y | 50 | //config: default y |