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

  /external/dhcpcd/
dhcp.c 496 ssize_t b, bytes = 0, ocets; local
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; local
583 ocets = (cidr + 7) / 8;
584 /* 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 1015 milliseconds