HomeSort by relevance Sort by last modified time
    Searched refs:ocets (Results 1 - 2 of 2) sorted by null

  /external/dhcpcd/
dhcp.c 500 ssize_t b, bytes = 0, ocets; local
518 ocets = (cidr + 7) / 8;
520 p += 4 + ocets;
532 /* If we have ocets then we have a destination and netmask */
533 if (ocets > 0) {
535 memcpy(&addr.s_addr, p, ocets);
537 p += ocets;
562 size_t ocets; local
587 ocets = (cidr + 7) / 8;
588 /* If we have ocets then we have a destination and netmask *
    [all...]
net.c 108 int ocets; local
114 ocets = (cidr + 7) / 8;
117 if (ocets > 0) {
118 memset(&addr->s_addr, 255, (size_t)ocets - 1);
119 memset((unsigned char *)&addr->s_addr + (ocets - 1),

Completed in 373 milliseconds