wget: use monotonic_sec instead of gettimeofday
zcip: use monotonic_us instead of gettimeofday udhcpcd: simpler, shorter random_xid() function old new delta monotonic_sec - 41 +41 find_pair 164 180 +16 run_list_real 2018 2028 +10 cmp_main 547 555 +8 collect_ctx 112 119 +7 singlemount 4544 4549 +5 time_main 1124 1128 +4 static.start_sec - 4 +4 static.lastupdate_sec - 4 +4 sock - 4 +4 read_package_field 253 257 +4 pick 38 40 +2 get_next_line 145 147 +2 count_lines 59 61 +2 process_stdin 435 433 -2 xstrtoul_range_sfx 229 226 -3 static.initialized 4 1 -3 dhcprelay_main 1125 1122 -3 catcher 380 377 -3 arping_main 1969 1966 -3 s 8 4 -4 cfg 4 - -4 static.lastupdate 8 - -8 start 8 - -8 random_xid 95 33 -62 .rodata 129114 129050 -64 zcip_main 1731 1576 -155 progressmeter 1035 867 -168 ------------------------------------------------------------------------------ (add/remove: 4/3 grow/shrink: 10/11 up/down: 113/-490) Total: -377 bytes
This commit is contained in:
parent
459be35234
commit
bd7bb299c0
@ -201,6 +201,7 @@ struct sysinfo {
|
|||||||
int sysinfo(struct sysinfo* info);
|
int sysinfo(struct sysinfo* info);
|
||||||
|
|
||||||
unsigned long long monotonic_us(void);
|
unsigned long long monotonic_us(void);
|
||||||
|
unsigned monotonic_sec(void);
|
||||||
|
|
||||||
extern void chomp(char *s);
|
extern void chomp(char *s);
|
||||||
extern void trim(char *s);
|
extern void trim(char *s);
|
||||||
|
15
libbb/time.c
15
libbb/time.c
@ -21,12 +21,23 @@ unsigned long long monotonic_us(void)
|
|||||||
bb_error_msg_and_die("clock_gettime(MONOTONIC) failed");
|
bb_error_msg_and_die("clock_gettime(MONOTONIC) failed");
|
||||||
return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000;
|
return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000;
|
||||||
}
|
}
|
||||||
|
unsigned monotonic_sec(void)
|
||||||
|
{
|
||||||
|
struct timespec ts;
|
||||||
|
if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts))
|
||||||
|
bb_error_msg_and_die("clock_gettime(MONOTONIC) failed");
|
||||||
|
return ts.tv_sec;
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
unsigned long long monotonic_us(void)
|
unsigned long long monotonic_us(void)
|
||||||
{
|
{
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
if (gettimeofday(&tv, NULL))
|
gettimeofday(&tv, NULL);
|
||||||
bb_error_msg_and_die("gettimeofday failed");
|
|
||||||
return tv.tv_sec * 1000000ULL + tv_usec;
|
return tv.tv_sec * 1000000ULL + tv_usec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned monotonic_sec(void)
|
||||||
|
{
|
||||||
|
return time(NULL);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -180,7 +180,12 @@ static void summarize(const char *fmt, char **command, resource_t * resp)
|
|||||||
vv_ms = (resp->ru.ru_utime.tv_sec + resp->ru.ru_stime.tv_sec) * 1000
|
vv_ms = (resp->ru.ru_utime.tv_sec + resp->ru.ru_stime.tv_sec) * 1000
|
||||||
+ (resp->ru.ru_utime.tv_usec + resp->ru.ru_stime.tv_usec) / 1000;
|
+ (resp->ru.ru_utime.tv_usec + resp->ru.ru_stime.tv_usec) / 1000;
|
||||||
|
|
||||||
cpu_ticks = vv_ms * TICKS_PER_SEC / 1000;
|
#if (1000 / TICKS_PER_SEC) * TICKS_PER_SEC == 1000
|
||||||
|
/* 1000 is exactly divisible by TICKS_PER_SEC */
|
||||||
|
cpu_ticks = vv_ms / (1000 / TICKS_PER_SEC);
|
||||||
|
#else
|
||||||
|
cpu_ticks = vv_ms * (unsigned long long)TICKS_PER_SEC / 1000;
|
||||||
|
#endif
|
||||||
if (!cpu_ticks) cpu_ticks = 1; /* we divide by it, must be nonzero */
|
if (!cpu_ticks) cpu_ticks = 1; /* we divide by it, must be nonzero */
|
||||||
|
|
||||||
/* putchar() != putc(stdout) in glibc! */
|
/* putchar() != putc(stdout) in glibc! */
|
||||||
|
@ -33,18 +33,17 @@ enum {
|
|||||||
BCAST_ONLY = 32,
|
BCAST_ONLY = 32,
|
||||||
UNICASTING = 64
|
UNICASTING = 64
|
||||||
};
|
};
|
||||||
static int cfg;
|
|
||||||
|
|
||||||
static int s;
|
static int sock;
|
||||||
static unsigned count = UINT_MAX;
|
static unsigned count = UINT_MAX;
|
||||||
static unsigned timeout_us;
|
static unsigned timeout_us;
|
||||||
static int sent;
|
static unsigned sent;
|
||||||
static int brd_sent;
|
static unsigned brd_sent;
|
||||||
static int received;
|
static unsigned received;
|
||||||
static int brd_recv;
|
static unsigned brd_recv;
|
||||||
static int req_recv;
|
static unsigned req_recv;
|
||||||
|
|
||||||
static int send_pack(int sock, struct in_addr *src_addr,
|
static int send_pack(struct in_addr *src_addr,
|
||||||
struct in_addr *dst_addr, struct sockaddr_ll *ME,
|
struct in_addr *dst_addr, struct sockaddr_ll *ME,
|
||||||
struct sockaddr_ll *HE)
|
struct sockaddr_ll *HE)
|
||||||
{
|
{
|
||||||
@ -59,7 +58,7 @@ static int send_pack(int sock, struct in_addr *src_addr,
|
|||||||
ah->ar_pro = htons(ETH_P_IP);
|
ah->ar_pro = htons(ETH_P_IP);
|
||||||
ah->ar_hln = ME->sll_halen;
|
ah->ar_hln = ME->sll_halen;
|
||||||
ah->ar_pln = 4;
|
ah->ar_pln = 4;
|
||||||
ah->ar_op = cfg & ADVERT ? htons(ARPOP_REPLY) : htons(ARPOP_REQUEST);
|
ah->ar_op = option_mask32 & ADVERT ? htons(ARPOP_REPLY) : htons(ARPOP_REQUEST);
|
||||||
|
|
||||||
memcpy(p, &ME->sll_addr, ah->ar_hln);
|
memcpy(p, &ME->sll_addr, ah->ar_hln);
|
||||||
p += ME->sll_halen;
|
p += ME->sll_halen;
|
||||||
@ -67,7 +66,7 @@ static int send_pack(int sock, struct in_addr *src_addr,
|
|||||||
memcpy(p, src_addr, 4);
|
memcpy(p, src_addr, 4);
|
||||||
p += 4;
|
p += 4;
|
||||||
|
|
||||||
if (cfg & ADVERT)
|
if (option_mask32 & ADVERT)
|
||||||
memcpy(p, &ME->sll_addr, ah->ar_hln);
|
memcpy(p, &ME->sll_addr, ah->ar_hln);
|
||||||
else
|
else
|
||||||
memcpy(p, &HE->sll_addr, ah->ar_hln);
|
memcpy(p, &HE->sll_addr, ah->ar_hln);
|
||||||
@ -81,7 +80,7 @@ static int send_pack(int sock, struct in_addr *src_addr,
|
|||||||
if (err == p - buf) {
|
if (err == p - buf) {
|
||||||
last = now;
|
last = now;
|
||||||
sent++;
|
sent++;
|
||||||
if (!(cfg & UNICASTING))
|
if (!(option_mask32 & UNICASTING))
|
||||||
brd_sent++;
|
brd_sent++;
|
||||||
}
|
}
|
||||||
return err;
|
return err;
|
||||||
@ -90,17 +89,17 @@ static int send_pack(int sock, struct in_addr *src_addr,
|
|||||||
static void finish(void) ATTRIBUTE_NORETURN;
|
static void finish(void) ATTRIBUTE_NORETURN;
|
||||||
static void finish(void)
|
static void finish(void)
|
||||||
{
|
{
|
||||||
if (!(cfg & QUIET)) {
|
if (!(option_mask32 & QUIET)) {
|
||||||
printf("Sent %d probe(s) (%d broadcast(s))\n"
|
printf("Sent %u probe(s) (%u broadcast(s))\n"
|
||||||
"Received %d repl%s"
|
"Received %u repl%s"
|
||||||
" (%d request(s), %d broadcast(s))\n",
|
" (%u request(s), %u broadcast(s))\n",
|
||||||
sent, brd_sent,
|
sent, brd_sent,
|
||||||
received, (received == 1) ? "ies" : "y",
|
received, (received == 1) ? "ies" : "y",
|
||||||
req_recv, brd_recv);
|
req_recv, brd_recv);
|
||||||
}
|
}
|
||||||
if (cfg & DAD)
|
if (option_mask32 & DAD)
|
||||||
exit(!!received);
|
exit(!!received);
|
||||||
if (cfg & UNSOLICITED)
|
if (option_mask32 & UNSOLICITED)
|
||||||
exit(0);
|
exit(0);
|
||||||
exit(!received);
|
exit(!received);
|
||||||
}
|
}
|
||||||
@ -121,8 +120,8 @@ static void catcher(void)
|
|||||||
count--;
|
count--;
|
||||||
|
|
||||||
if (last == 0 || (now - last) > 500000) {
|
if (last == 0 || (now - last) > 500000) {
|
||||||
send_pack(s, &src, &dst, &me, &he);
|
send_pack(&src, &dst, &me, &he);
|
||||||
if (count == 0 && (cfg & UNSOLICITED))
|
if (count == 0 && (option_mask32 & UNSOLICITED))
|
||||||
finish();
|
finish();
|
||||||
}
|
}
|
||||||
alarm(1);
|
alarm(1);
|
||||||
@ -160,7 +159,7 @@ static int recv_pack(unsigned char *buf, int len, struct sockaddr_ll *FROM)
|
|||||||
return 0;
|
return 0;
|
||||||
memcpy(&src_ip, p + ah->ar_hln, 4);
|
memcpy(&src_ip, p + ah->ar_hln, 4);
|
||||||
memcpy(&dst_ip, p + ah->ar_hln + 4 + ah->ar_hln, 4);
|
memcpy(&dst_ip, p + ah->ar_hln + 4 + ah->ar_hln, 4);
|
||||||
if (!(cfg & DAD)) {
|
if (!(option_mask32 & DAD)) {
|
||||||
if (src_ip.s_addr != dst.s_addr)
|
if (src_ip.s_addr != dst.s_addr)
|
||||||
return 0;
|
return 0;
|
||||||
if (src.s_addr != dst_ip.s_addr)
|
if (src.s_addr != dst_ip.s_addr)
|
||||||
@ -188,7 +187,7 @@ static int recv_pack(unsigned char *buf, int len, struct sockaddr_ll *FROM)
|
|||||||
if (src.s_addr && src.s_addr != dst_ip.s_addr)
|
if (src.s_addr && src.s_addr != dst_ip.s_addr)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (!(cfg & QUIET)) {
|
if (!(option_mask32 & QUIET)) {
|
||||||
int s_printed = 0;
|
int s_printed = 0;
|
||||||
|
|
||||||
printf("%scast re%s from %s [%s]",
|
printf("%scast re%s from %s [%s]",
|
||||||
@ -219,11 +218,11 @@ static int recv_pack(unsigned char *buf, int len, struct sockaddr_ll *FROM)
|
|||||||
brd_recv++;
|
brd_recv++;
|
||||||
if (ah->ar_op == htons(ARPOP_REQUEST))
|
if (ah->ar_op == htons(ARPOP_REQUEST))
|
||||||
req_recv++;
|
req_recv++;
|
||||||
if (cfg & QUIT_ON_REPLY)
|
if (option_mask32 & QUIT_ON_REPLY)
|
||||||
finish();
|
finish();
|
||||||
if (!(cfg & BCAST_ONLY)) {
|
if (!(option_mask32 & BCAST_ONLY)) {
|
||||||
memcpy(he.sll_addr, p, me.sll_halen);
|
memcpy(he.sll_addr, p, me.sll_halen);
|
||||||
cfg |= UNICASTING;
|
option_mask32 |= UNICASTING;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -237,32 +236,32 @@ int arping_main(int argc, char **argv)
|
|||||||
char *target;
|
char *target;
|
||||||
unsigned char *packet;
|
unsigned char *packet;
|
||||||
|
|
||||||
s = xsocket(PF_PACKET, SOCK_DGRAM, 0);
|
sock = xsocket(PF_PACKET, SOCK_DGRAM, 0);
|
||||||
|
|
||||||
// Drop suid root privileges
|
// Drop suid root privileges
|
||||||
xsetuid(getuid());
|
xsetuid(getuid());
|
||||||
|
|
||||||
{
|
{
|
||||||
unsigned opt;
|
unsigned opt;
|
||||||
char *_count, *_timeout;
|
char *str_count, *str_timeout;
|
||||||
|
|
||||||
/* Dad also sets quit_on_reply.
|
/* Dad also sets quit_on_reply.
|
||||||
* Advert also sets unsolicited.
|
* Advert also sets unsolicited.
|
||||||
*/
|
*/
|
||||||
opt_complementary = "=1:Df:AU";
|
opt_complementary = "=1:Df:AU";
|
||||||
opt = getopt32(argc, argv, "DUAqfbc:w:I:s:",
|
opt = getopt32(argc, argv, "DUAqfbc:w:I:s:",
|
||||||
&_count, &_timeout, &device, &source);
|
&str_count, &str_timeout, &device, &source);
|
||||||
cfg |= opt & 0x3f; /* set respective flags */
|
|
||||||
if (opt & 0x40) /* -c: count */
|
if (opt & 0x40) /* -c: count */
|
||||||
count = xatou(_count);
|
count = xatou(str_count);
|
||||||
if (opt & 0x80) /* -w: timeout */
|
if (opt & 0x80) /* -w: timeout */
|
||||||
timeout_us = xatou_range(_timeout, 0, INT_MAX/2000000) * 1000000;
|
timeout_us = xatou_range(str_timeout, 0, INT_MAX/2000000) * 1000000;
|
||||||
//if (opt & 0x100) /* -I: interface */
|
//if (opt & 0x100) /* -I: interface */
|
||||||
if (strlen(device) >= IF_NAMESIZE) {
|
if (strlen(device) >= IF_NAMESIZE) {
|
||||||
bb_error_msg_and_die("interface name '%s' is too long",
|
bb_error_msg_and_die("interface name '%s' is too long",
|
||||||
device);
|
device);
|
||||||
}
|
}
|
||||||
//if (opt & 0x200) /* -s: source */
|
//if (opt & 0x200) /* -s: source */
|
||||||
|
option_mask32 &= 0x3f; /* set respective flags */
|
||||||
}
|
}
|
||||||
|
|
||||||
target = argv[optind];
|
target = argv[optind];
|
||||||
@ -274,12 +273,12 @@ int arping_main(int argc, char **argv)
|
|||||||
|
|
||||||
memset(&ifr, 0, sizeof(ifr));
|
memset(&ifr, 0, sizeof(ifr));
|
||||||
strncpy(ifr.ifr_name, device, IFNAMSIZ - 1);
|
strncpy(ifr.ifr_name, device, IFNAMSIZ - 1);
|
||||||
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
|
if (ioctl(sock, SIOCGIFINDEX, &ifr) < 0) {
|
||||||
bb_error_msg_and_die("interface %s not found", device);
|
bb_error_msg_and_die("interface %s not found", device);
|
||||||
}
|
}
|
||||||
ifindex = ifr.ifr_ifindex;
|
ifindex = ifr.ifr_ifindex;
|
||||||
|
|
||||||
if (ioctl(s, SIOCGIFFLAGS, (char *) &ifr)) {
|
if (ioctl(sock, SIOCGIFFLAGS, (char *) &ifr)) {
|
||||||
bb_error_msg_and_die("SIOCGIFFLAGS");
|
bb_error_msg_and_die("SIOCGIFFLAGS");
|
||||||
}
|
}
|
||||||
if (!(ifr.ifr_flags & IFF_UP)) {
|
if (!(ifr.ifr_flags & IFF_UP)) {
|
||||||
@ -287,7 +286,7 @@ int arping_main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
if (ifr.ifr_flags & (IFF_NOARP | IFF_LOOPBACK)) {
|
if (ifr.ifr_flags & (IFF_NOARP | IFF_LOOPBACK)) {
|
||||||
bb_error_msg("interface %s is not ARPable", device);
|
bb_error_msg("interface %s is not ARPable", device);
|
||||||
return (cfg & DAD ? 0 : 2);
|
return (option_mask32 & DAD ? 0 : 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -303,10 +302,10 @@ int arping_main(int argc, char **argv)
|
|||||||
bb_error_msg_and_die("invalid source address %s", source);
|
bb_error_msg_and_die("invalid source address %s", source);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(cfg & DAD) && (cfg & UNSOLICITED) && src.s_addr == 0)
|
if (!(option_mask32 & DAD) && (option_mask32 & UNSOLICITED) && src.s_addr == 0)
|
||||||
src = dst;
|
src = dst;
|
||||||
|
|
||||||
if (!(cfg & DAD) || src.s_addr) {
|
if (!(option_mask32 & DAD) || src.s_addr) {
|
||||||
struct sockaddr_in saddr;
|
struct sockaddr_in saddr;
|
||||||
int probe_fd = xsocket(AF_INET, SOCK_DGRAM, 0);
|
int probe_fd = xsocket(AF_INET, SOCK_DGRAM, 0);
|
||||||
|
|
||||||
@ -319,7 +318,7 @@ int arping_main(int argc, char **argv)
|
|||||||
if (src.s_addr) {
|
if (src.s_addr) {
|
||||||
saddr.sin_addr = src;
|
saddr.sin_addr = src;
|
||||||
xbind(probe_fd, (struct sockaddr *) &saddr, sizeof(saddr));
|
xbind(probe_fd, (struct sockaddr *) &saddr, sizeof(saddr));
|
||||||
} else if (!(cfg & DAD)) {
|
} else if (!(option_mask32 & DAD)) {
|
||||||
socklen_t alen = sizeof(saddr);
|
socklen_t alen = sizeof(saddr);
|
||||||
|
|
||||||
saddr.sin_port = htons(1025);
|
saddr.sin_port = htons(1025);
|
||||||
@ -339,29 +338,29 @@ int arping_main(int argc, char **argv)
|
|||||||
me.sll_family = AF_PACKET;
|
me.sll_family = AF_PACKET;
|
||||||
me.sll_ifindex = ifindex;
|
me.sll_ifindex = ifindex;
|
||||||
me.sll_protocol = htons(ETH_P_ARP);
|
me.sll_protocol = htons(ETH_P_ARP);
|
||||||
xbind(s, (struct sockaddr *) &me, sizeof(me));
|
xbind(sock, (struct sockaddr *) &me, sizeof(me));
|
||||||
|
|
||||||
{
|
{
|
||||||
socklen_t alen = sizeof(me);
|
socklen_t alen = sizeof(me);
|
||||||
|
|
||||||
if (getsockname(s, (struct sockaddr *) &me, &alen) == -1) {
|
if (getsockname(sock, (struct sockaddr *) &me, &alen) == -1) {
|
||||||
bb_error_msg_and_die("getsockname");
|
bb_error_msg_and_die("getsockname");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (me.sll_halen == 0) {
|
if (me.sll_halen == 0) {
|
||||||
bb_error_msg("interface \"%s\" is not ARPable (no ll address)", device);
|
bb_error_msg("interface \"%s\" is not ARPable (no ll address)", device);
|
||||||
return (cfg & DAD ? 0 : 2);
|
return (option_mask32 & DAD ? 0 : 2);
|
||||||
}
|
}
|
||||||
he = me;
|
he = me;
|
||||||
memset(he.sll_addr, -1, he.sll_halen);
|
memset(he.sll_addr, -1, he.sll_halen);
|
||||||
|
|
||||||
if (!(cfg & QUIET)) {
|
if (!(option_mask32 & QUIET)) {
|
||||||
printf("ARPING to %s from %s via %s\n",
|
printf("ARPING to %s from %s via %s\n",
|
||||||
inet_ntoa(dst), inet_ntoa(src),
|
inet_ntoa(dst), inet_ntoa(src),
|
||||||
device ? device : "unknown");
|
device ? device : "unknown");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!src.s_addr && !(cfg & DAD)) {
|
if (!src.s_addr && !(option_mask32 & DAD)) {
|
||||||
bb_error_msg_and_die("no src address in the non-DAD mode");
|
bb_error_msg_and_die("no src address in the non-DAD mode");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -387,7 +386,7 @@ int arping_main(int argc, char **argv)
|
|||||||
socklen_t alen = sizeof(from);
|
socklen_t alen = sizeof(from);
|
||||||
int cc;
|
int cc;
|
||||||
|
|
||||||
cc = recvfrom(s, packet, 4096, 0, (struct sockaddr *) &from, &alen);
|
cc = recvfrom(sock, packet, 4096, 0, (struct sockaddr *) &from, &alen);
|
||||||
if (cc < 0) {
|
if (cc < 0) {
|
||||||
bb_perror_msg("recvfrom");
|
bb_perror_msg("recvfrom");
|
||||||
continue;
|
continue;
|
||||||
|
@ -25,19 +25,13 @@
|
|||||||
|
|
||||||
|
|
||||||
/* Create a random xid */
|
/* Create a random xid */
|
||||||
unsigned long random_xid(void)
|
unsigned random_xid(void)
|
||||||
{
|
{
|
||||||
static int initialized;
|
static smallint initialized;
|
||||||
if (!initialized) {
|
|
||||||
unsigned long seed;
|
|
||||||
|
|
||||||
if (open_read_close("/dev/urandom", &seed, sizeof(seed)) < 0) {
|
if (!initialized) {
|
||||||
bb_info_msg("Cannot load seed "
|
srand(monotonic_us());
|
||||||
"from /dev/urandom: %s", strerror(errno));
|
initialized = 1;
|
||||||
seed = time(0);
|
|
||||||
}
|
|
||||||
srand(seed);
|
|
||||||
initialized++;
|
|
||||||
}
|
}
|
||||||
return rand();
|
return rand();
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@ extern struct client_config_t client_config;
|
|||||||
|
|
||||||
/*** clientpacket.h ***/
|
/*** clientpacket.h ***/
|
||||||
|
|
||||||
unsigned long random_xid(void);
|
unsigned random_xid(void);
|
||||||
int send_discover(unsigned long xid, unsigned long requested);
|
int send_discover(unsigned long xid, unsigned long requested);
|
||||||
int send_selecting(unsigned long xid, unsigned long server, unsigned long requested);
|
int send_selecting(unsigned long xid, unsigned long server, unsigned long requested);
|
||||||
int send_renew(unsigned long xid, unsigned long server, unsigned long ciaddr);
|
int send_renew(unsigned long xid, unsigned long server, unsigned long ciaddr);
|
||||||
|
@ -38,7 +38,6 @@ static bool chunked; /* chunked transfer encoding */
|
|||||||
#if ENABLE_FEATURE_WGET_STATUSBAR
|
#if ENABLE_FEATURE_WGET_STATUSBAR
|
||||||
static void progressmeter(int flag);
|
static void progressmeter(int flag);
|
||||||
static const char *curfile; /* Name of current file being transferred */
|
static const char *curfile; /* Name of current file being transferred */
|
||||||
static struct timeval start; /* Time a transfer started */
|
|
||||||
enum {
|
enum {
|
||||||
STALLTIME = 5 /* Seconds when xfer considered "stalled" */
|
STALLTIME = 5 /* Seconds when xfer considered "stalled" */
|
||||||
};
|
};
|
||||||
@ -683,30 +682,30 @@ static void alarmtimer(int iwait)
|
|||||||
setitimer(ITIMER_REAL, &itv, NULL);
|
setitimer(ITIMER_REAL, &itv, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
progressmeter(int flag)
|
progressmeter(int flag)
|
||||||
{
|
{
|
||||||
static struct timeval lastupdate;
|
static unsigned lastupdate_sec;
|
||||||
|
static unsigned start_sec;
|
||||||
static off_t lastsize, totalsize;
|
static off_t lastsize, totalsize;
|
||||||
|
|
||||||
struct timeval now, td, tvwait;
|
|
||||||
off_t abbrevsize;
|
off_t abbrevsize;
|
||||||
int elapsed, ratio, barlength, i;
|
unsigned since_last_update, elapsed;
|
||||||
|
unsigned ratio;
|
||||||
|
int barlength, i;
|
||||||
|
|
||||||
if (flag == -1) { /* first call to progressmeter */
|
if (flag == -1) { /* first call to progressmeter */
|
||||||
gettimeofday(&start, NULL);
|
start_sec = monotonic_sec();
|
||||||
lastupdate = start;
|
lastupdate_sec = start_sec;
|
||||||
lastsize = 0;
|
lastsize = 0;
|
||||||
totalsize = content_len + beg_range; /* as content_len changes.. */
|
totalsize = content_len + beg_range; /* as content_len changes.. */
|
||||||
}
|
}
|
||||||
|
|
||||||
gettimeofday(&now, NULL);
|
|
||||||
ratio = 100;
|
ratio = 100;
|
||||||
if (totalsize != 0 && !chunked) {
|
if (totalsize != 0 && !chunked) {
|
||||||
/* long long helps to have working ETA even if !LFS */
|
/* long long helps to have it working even if !LFS */
|
||||||
ratio = (int) (100ULL * (transferred+beg_range) / totalsize);
|
ratio = (unsigned) (100ULL * (transferred+beg_range) / totalsize);
|
||||||
ratio = MIN(ratio, 100);
|
if (ratio > 100) ratio = 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio);
|
fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio);
|
||||||
@ -714,12 +713,13 @@ progressmeter(int flag)
|
|||||||
barlength = getttywidth() - 51;
|
barlength = getttywidth() - 51;
|
||||||
if (barlength > 0) {
|
if (barlength > 0) {
|
||||||
/* god bless gcc for variable arrays :) */
|
/* god bless gcc for variable arrays :) */
|
||||||
char buf[barlength+1];
|
|
||||||
i = barlength * ratio / 100;
|
i = barlength * ratio / 100;
|
||||||
|
{
|
||||||
|
char buf[i+1];
|
||||||
memset(buf, '*', i);
|
memset(buf, '*', i);
|
||||||
memset(buf + i, ' ', barlength - i);
|
buf[i] = '\0';
|
||||||
buf[barlength] = '\0';
|
fprintf(stderr, "|%s%*s|", buf, barlength - i, "");
|
||||||
fprintf(stderr, "|%s|", buf);
|
}
|
||||||
}
|
}
|
||||||
i = 0;
|
i = 0;
|
||||||
abbrevsize = transferred + beg_range;
|
abbrevsize = transferred + beg_range;
|
||||||
@ -730,22 +730,28 @@ progressmeter(int flag)
|
|||||||
/* see http://en.wikipedia.org/wiki/Tera */
|
/* see http://en.wikipedia.org/wiki/Tera */
|
||||||
fprintf(stderr, "%6d %c%c ", (int)abbrevsize, " KMGTPEZY"[i], i?'B':' ');
|
fprintf(stderr, "%6d %c%c ", (int)abbrevsize, " KMGTPEZY"[i], i?'B':' ');
|
||||||
|
|
||||||
timersub(&now, &lastupdate, &tvwait);
|
// Nuts! Ain't it easier to update progress meter ONLY when we transferred++?
|
||||||
if (transferred > lastsize) {
|
// FIXME: get rid of alarmtimer + updateprogressmeter mess
|
||||||
lastupdate = now;
|
|
||||||
lastsize = transferred;
|
|
||||||
if (tvwait.tv_sec >= STALLTIME)
|
|
||||||
timeradd(&start, &tvwait, &start);
|
|
||||||
tvwait.tv_sec = 0;
|
|
||||||
}
|
|
||||||
timersub(&now, &start, &td);
|
|
||||||
elapsed = td.tv_sec;
|
|
||||||
|
|
||||||
if (tvwait.tv_sec >= STALLTIME) {
|
elapsed = monotonic_sec();
|
||||||
|
since_last_update = elapsed - lastupdate_sec;
|
||||||
|
if (transferred > lastsize) {
|
||||||
|
lastupdate_sec = elapsed;
|
||||||
|
lastsize = transferred;
|
||||||
|
if (since_last_update >= STALLTIME) {
|
||||||
|
/* We "cut off" these seconds from elapsed time
|
||||||
|
* by adjusting start time */
|
||||||
|
start_sec += since_last_update;
|
||||||
|
}
|
||||||
|
since_last_update = 0; /* we are un-stalled now */
|
||||||
|
}
|
||||||
|
elapsed -= start_sec; /* now it's "elapsed since start" */
|
||||||
|
|
||||||
|
if (since_last_update >= STALLTIME) {
|
||||||
fprintf(stderr, " - stalled -");
|
fprintf(stderr, " - stalled -");
|
||||||
} else {
|
} else {
|
||||||
off_t to_download = totalsize - beg_range;
|
off_t to_download = totalsize - beg_range;
|
||||||
if (transferred <= 0 || elapsed <= 0 || transferred > to_download || chunked) {
|
if (transferred <= 0 || (int)elapsed <= 0 || transferred > to_download || chunked) {
|
||||||
fprintf(stderr, "--:--:-- ETA");
|
fprintf(stderr, "--:--:-- ETA");
|
||||||
} else {
|
} else {
|
||||||
/* to_download / (transferred/elapsed) - elapsed: */
|
/* to_download / (transferred/elapsed) - elapsed: */
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
// - avoid silent script failures, especially under load...
|
// - avoid silent script failures, especially under load...
|
||||||
// - link status monitoring (restart on link-up; stop on link-down)
|
// - link status monitoring (restart on link-up; stop on link-down)
|
||||||
|
|
||||||
#include "libbb.h"
|
|
||||||
#include <syslog.h>
|
#include <syslog.h>
|
||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
@ -31,10 +30,13 @@
|
|||||||
#include <net/ethernet.h>
|
#include <net/ethernet.h>
|
||||||
#include <net/if.h>
|
#include <net/if.h>
|
||||||
#include <net/if_arp.h>
|
#include <net/if_arp.h>
|
||||||
|
|
||||||
#include <linux/if_packet.h>
|
#include <linux/if_packet.h>
|
||||||
#include <linux/sockios.h>
|
#include <linux/sockios.h>
|
||||||
|
|
||||||
|
#include "libbb.h"
|
||||||
|
|
||||||
|
/* We don't need more than 32 bits of the counter */
|
||||||
|
#define MONOTONIC_US() ((unsigned)monotonic_us())
|
||||||
|
|
||||||
struct arp_packet {
|
struct arp_packet {
|
||||||
struct ether_header hdr;
|
struct ether_header hdr;
|
||||||
@ -78,15 +80,12 @@ static void pick(struct in_addr *ip)
|
|||||||
{
|
{
|
||||||
unsigned tmp;
|
unsigned tmp;
|
||||||
|
|
||||||
/* use cheaper math than lrand48() mod N */
|
|
||||||
do {
|
do {
|
||||||
tmp = (lrand48() >> 16) & IN_CLASSB_HOST;
|
tmp = rand() & IN_CLASSB_HOST;
|
||||||
} while (tmp > (IN_CLASSB_HOST - 0x0200));
|
} while (tmp > (IN_CLASSB_HOST - 0x0200));
|
||||||
ip->s_addr = htonl((LINKLOCAL_ADDR + 0x0100) + tmp);
|
ip->s_addr = htonl((LINKLOCAL_ADDR + 0x0100) + tmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: we need a flag to direct bb_[p]error_msg output to stderr. */
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Broadcast an ARP packet.
|
* Broadcast an ARP packet.
|
||||||
*/
|
*/
|
||||||
@ -151,7 +150,7 @@ static int run(char *argv[3], const char *intf, struct in_addr *ip)
|
|||||||
*/
|
*/
|
||||||
static unsigned ALWAYS_INLINE ms_rdelay(unsigned secs)
|
static unsigned ALWAYS_INLINE ms_rdelay(unsigned secs)
|
||||||
{
|
{
|
||||||
return lrand48() % (secs * 1000);
|
return rand() % (secs * 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -176,7 +175,7 @@ int zcip_main(int argc, char **argv)
|
|||||||
struct ifreq ifr;
|
struct ifreq ifr;
|
||||||
char *intf;
|
char *intf;
|
||||||
char *script_av[3];
|
char *script_av[3];
|
||||||
suseconds_t timeout; // milliseconds
|
int timeout_ms; /* must be signed */
|
||||||
unsigned conflicts;
|
unsigned conflicts;
|
||||||
unsigned nprobes;
|
unsigned nprobes;
|
||||||
unsigned nclaims;
|
unsigned nclaims;
|
||||||
@ -184,14 +183,14 @@ int zcip_main(int argc, char **argv)
|
|||||||
int verbose;
|
int verbose;
|
||||||
} L;
|
} L;
|
||||||
#define null_ip (L.null_ip )
|
#define null_ip (L.null_ip )
|
||||||
#define null_addr (L.null_addr)
|
#define null_addr (L.null_addr )
|
||||||
#define saddr (L.saddr )
|
#define saddr (L.saddr )
|
||||||
#define ip (L.ip )
|
#define ip (L.ip )
|
||||||
#define ifr (L.ifr )
|
#define ifr (L.ifr )
|
||||||
#define intf (L.intf )
|
#define intf (L.intf )
|
||||||
#define script_av (L.script_av)
|
#define script_av (L.script_av )
|
||||||
#define timeout (L.timeout )
|
#define timeout_ms (L.timeout_ms)
|
||||||
#define conflicts (L.conflicts)
|
#define conflicts (L.conflicts )
|
||||||
#define nprobes (L.nprobes )
|
#define nprobes (L.nprobes )
|
||||||
#define nclaims (L.nclaims )
|
#define nclaims (L.nclaims )
|
||||||
#define ready (L.ready )
|
#define ready (L.ready )
|
||||||
@ -199,6 +198,8 @@ int zcip_main(int argc, char **argv)
|
|||||||
|
|
||||||
memset(&L, 0, sizeof(L));
|
memset(&L, 0, sizeof(L));
|
||||||
|
|
||||||
|
srand(MONOTONIC_US());
|
||||||
|
|
||||||
#define FOREGROUND (opts & 1)
|
#define FOREGROUND (opts & 1)
|
||||||
#define QUIT (opts & 2)
|
#define QUIT (opts & 2)
|
||||||
// parse commandline: prog [options] ifname script
|
// parse commandline: prog [options] ifname script
|
||||||
@ -282,7 +283,7 @@ int zcip_main(int argc, char **argv)
|
|||||||
// - defend it, within limits
|
// - defend it, within limits
|
||||||
while (1) {
|
while (1) {
|
||||||
struct pollfd fds[1];
|
struct pollfd fds[1];
|
||||||
struct timeval tv1;
|
unsigned deadline_us;
|
||||||
struct arp_packet p;
|
struct arp_packet p;
|
||||||
|
|
||||||
int source_ip_conflict = 0;
|
int source_ip_conflict = 0;
|
||||||
@ -293,24 +294,18 @@ int zcip_main(int argc, char **argv)
|
|||||||
fds[0].revents = 0;
|
fds[0].revents = 0;
|
||||||
|
|
||||||
// poll, being ready to adjust current timeout
|
// poll, being ready to adjust current timeout
|
||||||
if (!timeout) {
|
if (!timeout_ms) {
|
||||||
timeout = ms_rdelay(PROBE_WAIT);
|
timeout_ms = ms_rdelay(PROBE_WAIT);
|
||||||
// FIXME setsockopt(fd, SO_ATTACH_FILTER, ...) to
|
// FIXME setsockopt(fd, SO_ATTACH_FILTER, ...) to
|
||||||
// make the kernel filter out all packets except
|
// make the kernel filter out all packets except
|
||||||
// ones we'd care about.
|
// ones we'd care about.
|
||||||
}
|
}
|
||||||
// set tv1 to the point in time when we timeout
|
// set deadline_us to the point in time when we timeout
|
||||||
gettimeofday(&tv1, NULL);
|
deadline_us = MONOTONIC_US() + timeout_ms * 1000;
|
||||||
tv1.tv_usec += (timeout % 1000) * 1000;
|
|
||||||
while (tv1.tv_usec > 1000000) {
|
|
||||||
tv1.tv_usec -= 1000000;
|
|
||||||
tv1.tv_sec++;
|
|
||||||
}
|
|
||||||
tv1.tv_sec += timeout / 1000;
|
|
||||||
|
|
||||||
VDBG("...wait %ld %s nprobes=%d, nclaims=%d\n",
|
VDBG("...wait %d %s nprobes=%u, nclaims=%u\n",
|
||||||
timeout, intf, nprobes, nclaims);
|
timeout_ms, intf, nprobes, nclaims);
|
||||||
switch (poll(fds, 1, timeout)) {
|
switch (poll(fds, 1, timeout_ms)) {
|
||||||
|
|
||||||
// timeout
|
// timeout
|
||||||
case 0:
|
case 0:
|
||||||
@ -321,25 +316,24 @@ int zcip_main(int argc, char **argv)
|
|||||||
// have been received, so we can progress through the states
|
// have been received, so we can progress through the states
|
||||||
if (nprobes < PROBE_NUM) {
|
if (nprobes < PROBE_NUM) {
|
||||||
nprobes++;
|
nprobes++;
|
||||||
VDBG("probe/%d %s@%s\n",
|
VDBG("probe/%u %s@%s\n",
|
||||||
nprobes, intf, inet_ntoa(ip));
|
nprobes, intf, inet_ntoa(ip));
|
||||||
arp(fd, &saddr, ARPOP_REQUEST,
|
arp(fd, &saddr, ARPOP_REQUEST,
|
||||||
ð_addr, null_ip,
|
ð_addr, null_ip,
|
||||||
&null_addr, ip);
|
&null_addr, ip);
|
||||||
timeout = PROBE_MIN * 1000;
|
timeout_ms = PROBE_MIN * 1000;
|
||||||
timeout += ms_rdelay(PROBE_MAX
|
timeout_ms += ms_rdelay(PROBE_MAX - PROBE_MIN);
|
||||||
- PROBE_MIN);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Switch to announce state.
|
// Switch to announce state.
|
||||||
state = ANNOUNCE;
|
state = ANNOUNCE;
|
||||||
nclaims = 0;
|
nclaims = 0;
|
||||||
VDBG("announce/%d %s@%s\n",
|
VDBG("announce/%u %s@%s\n",
|
||||||
nclaims, intf, inet_ntoa(ip));
|
nclaims, intf, inet_ntoa(ip));
|
||||||
arp(fd, &saddr, ARPOP_REQUEST,
|
arp(fd, &saddr, ARPOP_REQUEST,
|
||||||
ð_addr, ip,
|
ð_addr, ip,
|
||||||
ð_addr, ip);
|
ð_addr, ip);
|
||||||
timeout = ANNOUNCE_INTERVAL * 1000;
|
timeout_ms = ANNOUNCE_INTERVAL * 1000;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case RATE_LIMIT_PROBE:
|
case RATE_LIMIT_PROBE:
|
||||||
@ -347,24 +341,24 @@ int zcip_main(int argc, char **argv)
|
|||||||
// have been received, so we can move immediately to the announce state
|
// have been received, so we can move immediately to the announce state
|
||||||
state = ANNOUNCE;
|
state = ANNOUNCE;
|
||||||
nclaims = 0;
|
nclaims = 0;
|
||||||
VDBG("announce/%d %s@%s\n",
|
VDBG("announce/%u %s@%s\n",
|
||||||
nclaims, intf, inet_ntoa(ip));
|
nclaims, intf, inet_ntoa(ip));
|
||||||
arp(fd, &saddr, ARPOP_REQUEST,
|
arp(fd, &saddr, ARPOP_REQUEST,
|
||||||
ð_addr, ip,
|
ð_addr, ip,
|
||||||
ð_addr, ip);
|
ð_addr, ip);
|
||||||
timeout = ANNOUNCE_INTERVAL * 1000;
|
timeout_ms = ANNOUNCE_INTERVAL * 1000;
|
||||||
break;
|
break;
|
||||||
case ANNOUNCE:
|
case ANNOUNCE:
|
||||||
// timeouts in the ANNOUNCE state mean no conflicting ARP packets
|
// timeouts in the ANNOUNCE state mean no conflicting ARP packets
|
||||||
// have been received, so we can progress through the states
|
// have been received, so we can progress through the states
|
||||||
if (nclaims < ANNOUNCE_NUM) {
|
if (nclaims < ANNOUNCE_NUM) {
|
||||||
nclaims++;
|
nclaims++;
|
||||||
VDBG("announce/%d %s@%s\n",
|
VDBG("announce/%u %s@%s\n",
|
||||||
nclaims, intf, inet_ntoa(ip));
|
nclaims, intf, inet_ntoa(ip));
|
||||||
arp(fd, &saddr, ARPOP_REQUEST,
|
arp(fd, &saddr, ARPOP_REQUEST,
|
||||||
ð_addr, ip,
|
ð_addr, ip,
|
||||||
ð_addr, ip);
|
ð_addr, ip);
|
||||||
timeout = ANNOUNCE_INTERVAL * 1000;
|
timeout_ms = ANNOUNCE_INTERVAL * 1000;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Switch to monitor state.
|
// Switch to monitor state.
|
||||||
@ -375,7 +369,7 @@ int zcip_main(int argc, char **argv)
|
|||||||
run(script_av, intf, &ip);
|
run(script_av, intf, &ip);
|
||||||
ready = 1;
|
ready = 1;
|
||||||
conflicts = 0;
|
conflicts = 0;
|
||||||
timeout = -1; // Never timeout in the monitor state.
|
timeout_ms = -1; // Never timeout in the monitor state.
|
||||||
|
|
||||||
// NOTE: all other exit paths
|
// NOTE: all other exit paths
|
||||||
// should deconfig ...
|
// should deconfig ...
|
||||||
@ -386,14 +380,14 @@ int zcip_main(int argc, char **argv)
|
|||||||
case DEFEND:
|
case DEFEND:
|
||||||
// We won! No ARP replies, so just go back to monitor.
|
// We won! No ARP replies, so just go back to monitor.
|
||||||
state = MONITOR;
|
state = MONITOR;
|
||||||
timeout = -1;
|
timeout_ms = -1;
|
||||||
conflicts = 0;
|
conflicts = 0;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// Invalid, should never happen. Restart the whole protocol.
|
// Invalid, should never happen. Restart the whole protocol.
|
||||||
state = PROBE;
|
state = PROBE;
|
||||||
pick(&ip);
|
pick(&ip);
|
||||||
timeout = 0;
|
timeout_ms = 0;
|
||||||
nprobes = 0;
|
nprobes = 0;
|
||||||
nclaims = 0;
|
nclaims = 0;
|
||||||
break;
|
break;
|
||||||
@ -403,20 +397,17 @@ int zcip_main(int argc, char **argv)
|
|||||||
case 1:
|
case 1:
|
||||||
// We need to adjust the timeout in case we didn't receive
|
// We need to adjust the timeout in case we didn't receive
|
||||||
// a conflicting packet.
|
// a conflicting packet.
|
||||||
if (timeout > 0) {
|
if (timeout_ms > 0) {
|
||||||
struct timeval tv2;
|
unsigned diff = deadline_us - MONOTONIC_US();
|
||||||
|
if ((int)(diff) < 0) {
|
||||||
gettimeofday(&tv2, NULL);
|
|
||||||
if (timercmp(&tv1, &tv2, <)) {
|
|
||||||
// Current time is greater than the expected timeout time.
|
// Current time is greater than the expected timeout time.
|
||||||
// Should never happen.
|
// Should never happen.
|
||||||
VDBG("missed an expected timeout\n");
|
VDBG("missed an expected timeout\n");
|
||||||
timeout = 0;
|
timeout_ms = 0;
|
||||||
} else {
|
} else {
|
||||||
VDBG("adjusting timeout\n");
|
VDBG("adjusting timeout\n");
|
||||||
timersub(&tv1, &tv2, &tv1);
|
timeout_ms = diff / 1000;
|
||||||
timeout = 1000 * tv1.tv_sec
|
if (!timeout_ms) timeout_ms = 1;
|
||||||
+ tv1.tv_usec / 1000;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -484,13 +475,13 @@ int zcip_main(int argc, char **argv)
|
|||||||
conflicts++;
|
conflicts++;
|
||||||
if (conflicts >= MAX_CONFLICTS) {
|
if (conflicts >= MAX_CONFLICTS) {
|
||||||
VDBG("%s ratelimit\n", intf);
|
VDBG("%s ratelimit\n", intf);
|
||||||
timeout = RATE_LIMIT_INTERVAL * 1000;
|
timeout_ms = RATE_LIMIT_INTERVAL * 1000;
|
||||||
state = RATE_LIMIT_PROBE;
|
state = RATE_LIMIT_PROBE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// restart the whole protocol
|
// restart the whole protocol
|
||||||
pick(&ip);
|
pick(&ip);
|
||||||
timeout = 0;
|
timeout_ms = 0;
|
||||||
nprobes = 0;
|
nprobes = 0;
|
||||||
nclaims = 0;
|
nclaims = 0;
|
||||||
}
|
}
|
||||||
@ -500,7 +491,7 @@ int zcip_main(int argc, char **argv)
|
|||||||
if (source_ip_conflict) {
|
if (source_ip_conflict) {
|
||||||
VDBG("monitor conflict -- defending\n");
|
VDBG("monitor conflict -- defending\n");
|
||||||
state = DEFEND;
|
state = DEFEND;
|
||||||
timeout = DEFEND_INTERVAL * 1000;
|
timeout_ms = DEFEND_INTERVAL * 1000;
|
||||||
arp(fd, &saddr,
|
arp(fd, &saddr,
|
||||||
ARPOP_REQUEST,
|
ARPOP_REQUEST,
|
||||||
ð_addr, ip,
|
ð_addr, ip,
|
||||||
@ -518,7 +509,7 @@ int zcip_main(int argc, char **argv)
|
|||||||
|
|
||||||
// restart the whole protocol
|
// restart the whole protocol
|
||||||
pick(&ip);
|
pick(&ip);
|
||||||
timeout = 0;
|
timeout_ms = 0;
|
||||||
nprobes = 0;
|
nprobes = 0;
|
||||||
nclaims = 0;
|
nclaims = 0;
|
||||||
}
|
}
|
||||||
@ -528,7 +519,7 @@ int zcip_main(int argc, char **argv)
|
|||||||
VDBG("invalid state -- starting over\n");
|
VDBG("invalid state -- starting over\n");
|
||||||
state = PROBE;
|
state = PROBE;
|
||||||
pick(&ip);
|
pick(&ip);
|
||||||
timeout = 0;
|
timeout_ms = 0;
|
||||||
nprobes = 0;
|
nprobes = 0;
|
||||||
nclaims = 0;
|
nclaims = 0;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user