Home | History | Annotate | Download | only in dhcpcd

Lines Matching refs:ocets

496 	ssize_t b, bytes = 0, ocets;
514 ocets = (cidr + 7) / 8;
516 p += 4 + ocets;
528 /* If we have ocets then we have a destination and netmask */
529 if (ocets > 0) {
531 memcpy(&addr.s_addr, p, ocets);
533 p += ocets;
558 size_t ocets;
583 ocets = (cidr + 7) / 8;
584 /* If we have ocets then we have a destination and netmask */
585 if (ocets > 0) {
586 memcpy(&rt->dest.s_addr, p, ocets);
587 p += ocets;