Home
last modified time | relevance | path

Searched refs:onebyte (Results 1 – 3 of 3) sorted by relevance

/third_party/iptables/extensions/
Dlibebt_arp.c93 long int onebyte; in undot_ip() local
104 onebyte = strtol(p, &end, 10); in undot_ip()
105 if (*end != '\0' || onebyte > 255 || onebyte < 0) in undot_ip()
107 ip2[i] = (unsigned char)onebyte; in undot_ip()
111 onebyte = strtol(p, &end, 10); in undot_ip()
112 if (*end != '\0' || onebyte > 255 || onebyte < 0) in undot_ip()
114 ip2[3] = (unsigned char)onebyte; in undot_ip()
Dlibebt_ip.c199 long int onebyte; in undot_ip() local
210 onebyte = strtol(p, &end, 10); in undot_ip()
211 if (*end != '\0' || onebyte > 255 || onebyte < 0) in undot_ip()
213 ip2[i] = (unsigned char)onebyte; in undot_ip()
217 onebyte = strtol(p, &end, 10); in undot_ip()
218 if (*end != '\0' || onebyte > 255 || onebyte < 0) in undot_ip()
220 ip2[3] = (unsigned char)onebyte; in undot_ip()
/third_party/iptables/libxtables/
Dxtables.c1471 unsigned int onebyte; in __numeric_to_ipaddr() local
1487 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr()
1490 addrp[i] = onebyte; in __numeric_to_ipaddr()
1498 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr()
1501 addrp[i] = onebyte; in __numeric_to_ipaddr()
1506 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) in __numeric_to_ipaddr()
1509 addrp[3] = onebyte; in __numeric_to_ipaddr()