Home | History | Annotate | Download | only in iputils

Lines Matching defs:cc

721 	int cc;
743 cc = datalen + 8; /* skips ICMP portion */
746 icp->checksum = in_cksum((u_short *)icp, cc, 0);
760 iov.iov_len = cc;
766 return (cc == i ? 0 : i);
783 parse_reply(struct msghdr *msg, int cc, void *addr, struct timeval *tv)
800 if (cc < hlen + 8 || ip->ihl < 5) {
802 fprintf(stderr, "ping: packet too short (%d bytes) from %s\n", cc,
829 cc -= hlen;
831 csfailed = in_cksum((u_short *)icp, cc, 0);
836 if (gather_statistics((__u8*)icp, sizeof(*icp), cc,
859 if (cc < 8+sizeof(struct iphdr)+8 ||
860 cc < 8+iph->ihl*4+8)