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

  /external/dhcpcd/
dhcp.c 494 ssize_t b, bytes = 0, ocets; local
512 ocets = (cidr + 7) / 8;
514 p += 4 + ocets;
526 /* If we have ocets then we have a destination and netmask */
527 if (ocets > 0) {
529 memcpy(&addr.s_addr, p, ocets);
531 p += ocets;
556 size_t ocets; local
581 ocets = (cidr + 7) / 8;
582 /* If we have ocets then we have a destination and netmask *
    [all...]
net.c 92 int ocets; local
98 ocets = (cidr + 7) / 8;
101 if (ocets > 0) {
102 memset(&addr->s_addr, 255, (size_t)ocets - 1);
103 memset((unsigned char *)&addr->s_addr + (ocets - 1),

Completed in 508 milliseconds