Home | History | Annotate | Download | only in iputils

Lines Matching defs:cc

1362 	int cc;
1375 cc = datalen + 8; /* skips ICMP portion */
1377 return cc;
1384 int cc;
1390 cc = sizeof(*nih);
1398 cc += ni_subject_len;
1400 return cc;
1405 int len, cc;
1415 cc = sendto(icmp_sock, (char *)outpack, len, confirm,
1433 cc = sendmsg(icmp_sock, &mhdr, confirm);
1437 return (cc == len ? 0 : cc);
1440 void pr_echo_reply(__u8 *_icmph, int cc)
1589 parse_reply(struct msghdr *msg, int cc, void *addr, struct timeval *tv)
1615 if (cc < 8) {
1617 fprintf(stderr, "ping: packet too short (%d bytes)\n", cc);
1624 if (gather_statistics((__u8*)icmph, sizeof(*icmph), cc,
1634 if (gather_statistics((__u8*)icmph, sizeof(*icmph), cc,
1651 if (cc < 8+sizeof(struct ip6_hdr)+8)