diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-03-03 00:36:35 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-03-03 00:36:35 +0000 |
commit | 48f0e028a6948995f1eff444fcc7adc5e82621b1 (patch) | |
tree | a696356bc1b8c002af41aa928bc6bf64d3832f17 /libbb | |
parent | a9569003234d74d61a284a0f89cb303b00b71dd3 (diff) | |
download | busybox-w32-48f0e028a6948995f1eff444fcc7adc5e82621b1.tar.gz busybox-w32-48f0e028a6948995f1eff444fcc7adc5e82621b1.tar.bz2 busybox-w32-48f0e028a6948995f1eff444fcc7adc5e82621b1.zip |
ping: don't measure times if ping payload is less than 8 bytes;
commonalize some ping code.
git-svn-id: svn://busybox.net/trunk/busybox@17999 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/create_icmp6_socket.c | 10 | ||||
-rw-r--r-- | libbb/create_icmp_socket.c | 10 |
2 files changed, 8 insertions, 12 deletions
diff --git a/libbb/create_icmp6_socket.c b/libbb/create_icmp6_socket.c index c3d1b5578..b90f3e9fd 100644 --- a/libbb/create_icmp6_socket.c +++ b/libbb/create_icmp6_socket.c | |||
@@ -10,8 +10,6 @@ | |||
10 | #include <sys/types.h> | 10 | #include <sys/types.h> |
11 | #include <netdb.h> | 11 | #include <netdb.h> |
12 | #include <sys/socket.h> | 12 | #include <sys/socket.h> |
13 | #include <errno.h> | ||
14 | #include <unistd.h> | ||
15 | #include "libbb.h" | 13 | #include "libbb.h" |
16 | 14 | ||
17 | #ifdef CONFIG_FEATURE_IPV6 | 15 | #ifdef CONFIG_FEATURE_IPV6 |
@@ -23,12 +21,12 @@ int create_icmp6_socket(void) | |||
23 | proto = getprotobyname("ipv6-icmp"); | 21 | proto = getprotobyname("ipv6-icmp"); |
24 | /* if getprotobyname failed, just silently force | 22 | /* if getprotobyname failed, just silently force |
25 | * proto->p_proto to have the correct value for "ipv6-icmp" */ | 23 | * proto->p_proto to have the correct value for "ipv6-icmp" */ |
26 | if ((sock = socket(AF_INET6, SOCK_RAW, | 24 | sock = socket(AF_INET6, SOCK_RAW, |
27 | (proto ? proto->p_proto : IPPROTO_ICMPV6))) < 0) { | 25 | (proto ? proto->p_proto : IPPROTO_ICMPV6)); |
26 | if (sock < 0) { | ||
28 | if (errno == EPERM) | 27 | if (errno == EPERM) |
29 | bb_error_msg_and_die(bb_msg_perm_denied_are_you_root); | 28 | bb_error_msg_and_die(bb_msg_perm_denied_are_you_root); |
30 | else | 29 | bb_perror_msg_and_die(bb_msg_can_not_create_raw_socket); |
31 | bb_perror_msg_and_die(bb_msg_can_not_create_raw_socket); | ||
32 | } | 30 | } |
33 | 31 | ||
34 | /* drop root privs if running setuid */ | 32 | /* drop root privs if running setuid */ |
diff --git a/libbb/create_icmp_socket.c b/libbb/create_icmp_socket.c index 431c4d8a7..666454888 100644 --- a/libbb/create_icmp_socket.c +++ b/libbb/create_icmp_socket.c | |||
@@ -10,8 +10,6 @@ | |||
10 | #include <sys/types.h> | 10 | #include <sys/types.h> |
11 | #include <netdb.h> | 11 | #include <netdb.h> |
12 | #include <sys/socket.h> | 12 | #include <sys/socket.h> |
13 | #include <errno.h> | ||
14 | #include <unistd.h> | ||
15 | #include "libbb.h" | 13 | #include "libbb.h" |
16 | 14 | ||
17 | int create_icmp_socket(void) | 15 | int create_icmp_socket(void) |
@@ -22,12 +20,12 @@ int create_icmp_socket(void) | |||
22 | proto = getprotobyname("icmp"); | 20 | proto = getprotobyname("icmp"); |
23 | /* if getprotobyname failed, just silently force | 21 | /* if getprotobyname failed, just silently force |
24 | * proto->p_proto to have the correct value for "icmp" */ | 22 | * proto->p_proto to have the correct value for "icmp" */ |
25 | if ((sock = socket(AF_INET, SOCK_RAW, | 23 | sock = socket(AF_INET, SOCK_RAW, |
26 | (proto ? proto->p_proto : 1))) < 0) { /* 1 == ICMP */ | 24 | (proto ? proto->p_proto : 1)); /* 1 == ICMP */ |
25 | if (sock < 0) { | ||
27 | if (errno == EPERM) | 26 | if (errno == EPERM) |
28 | bb_error_msg_and_die(bb_msg_perm_denied_are_you_root); | 27 | bb_error_msg_and_die(bb_msg_perm_denied_are_you_root); |
29 | else | 28 | bb_perror_msg_and_die(bb_msg_can_not_create_raw_socket); |
30 | bb_perror_msg_and_die(bb_msg_can_not_create_raw_socket); | ||
31 | } | 29 | } |
32 | 30 | ||
33 | /* drop root privs if running setuid */ | 31 | /* drop root privs if running setuid */ |