Home | History | Annotate | Download | only in libxtables

Lines Matching refs:dotted

1290 static struct in_addr *__numeric_to_ipaddr(const char *dotted, bool is_mask)
1298 /* copy dotted string, because we need to modify it */
1299 strncpy(buf, dotted, sizeof(buf) - 1);
1336 struct in_addr *xtables_numeric_to_ipaddr(const char *dotted)
1338 return __numeric_to_ipaddr(dotted, false);
1341 struct in_addr *xtables_numeric_to_ipmask(const char *dotted)
1343 return __numeric_to_ipaddr(dotted, true);