Searched refs:waittime (Results 1 - 2 of 2) sorted by relevance

/external/iputils/
H A Dping_common.c416 static unsigned long waittime; local
419 if (waittime)
423 waittime = 2 * tmax;
424 if (waittime < 1000*interval)
425 waittime = 1000*interval;
427 waittime = lingertime*1000;
429 if (next < 0 || next < waittime/1000)
430 next = waittime/1000;
434 it.it_value.tv_sec = waittime/1000000;
435 it.it_value.tv_usec = waittime
[all...]
H A Dtraceroute6.c320 int waittime = 5; /* time to wait for response (in seconds) */ variable
423 waittime = atoi(optarg);
424 if (waittime <= 1) {
683 wait.tv_sec = waittime;

Completed in 88 milliseconds