Searched defs:ntransmitted (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.rdisc/
H A Din.rdisc.c220 int ntransmitted = 0; variable
520 ntransmitted++;
522 if (ntransmitted < initial_advertisements)
529 if (ntransmitted < max_solicitations) {
530 ntransmitted++;
993 ntransmitted++;
1061 ntransmitted++;
1066 logtrace("%d packets transmitted, ", ntransmitted);
1532 ntransmitted = 0;
1533 ntransmitted
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/traceroute/
H A Dtraceroute.c2063 print_stats(int ntransmitted, int nreceived, double rttmin, double rttmax, argument
2069 if (ntransmitted > 0 && ntransmitted >= nreceived) {
2070 int missed = ntransmitted - nreceived;
2071 double loss = 100 * (double)missed / (double)ntransmitted;
2085 Printf(" %d/%d pkts", nreceived, ntransmitted);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ping/
H A Dping.c202 static int ntransmitted; /* number of packet sent to single IP address */ variable
1859 dest_port : (ntransmitted % (MAX_ICMP_SEQ + 1));
2089 ntransmitted++;
2106 icp->icmp_seq = htons(ntransmitted++ % (MAX_ICMP_SEQ + 1));
2344 if (icmpseq < (ntransmitted % (MAX_ICMP_SEQ + 1))) {
2432 Printf("%d packets transmitted, ", ntransmitted);
2434 if (ntransmitted) {
2435 if (nreceived <= ntransmitted) {
2437 (int)(((ntransmitted-nreceived)*100) /
2438 ntransmitted));
[all...]

Completed in 81 milliseconds