/external/iptables/extensions/ |
libipt_MASQUERADE.c | 49 if (!xtables_strtoui(arg, &end, &port, 0, UINT16_MAX)) 59 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX))
|
libipt_REDIRECT.c | 48 if (!xtables_strtoui(arg, &end, &port, 0, UINT16_MAX) && 59 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX) &&
|
libxt_owner.c | 148 else if (!xtables_strtoui(cb->arg, NULL, &id, 0, UINT32_MAX - 1)) 158 else if (!xtables_strtoui(cb->arg, NULL, &id, 0, UINT32_MAX - 1)) 195 else if (!xtables_strtoui(cb->arg, NULL, &id, 0, UINT32_MAX - 1)) 205 else if (!xtables_strtoui(cb->arg, NULL, &id, 0, UINT32_MAX - 1)) 231 if (!xtables_strtoui(s, &end, from, 0, UINT32_MAX - 1)) 235 if (!xtables_strtoui(end + 1, &end, to, 0, UINT32_MAX - 1))
|
libxt_TCPOPTSTRIP.c | 75 !xtables_strtoui(arg, NULL, &option, 0, UINT8_MAX))
|
libip6t_icmp6.c | 129 if (!xtables_strtoui(buffer, NULL, &number, 0, UINT8_MAX)) 134 if (!xtables_strtoui(slash+1, NULL, &number, 0, UINT8_MAX))
|
libipt_icmp.c | 153 if (!xtables_strtoui(buffer, NULL, &number, 0, UINT8_MAX)) 158 if (!xtables_strtoui(slash+1, NULL, &number, 0, UINT8_MAX))
|
libip6t_mh.c | 98 if (!xtables_strtoui(name, NULL, &number, 0, UINT8_MAX))
|
libxt_rateest.c | 191 if (!xtables_strtoui(argv[optind], NULL, &val, 0, UINT32_MAX)) 240 if (!xtables_strtoui(argv[optind], NULL, &val, 0, UINT32_MAX))
|
libxt_SET.c | 327 if (!xtables_strtoui(optarg, NULL, &timeout, 0, UINT32_MAX - 1))
|
libxt_tcp.c | 122 if (!xtables_strtoui(option, NULL, &ret, 1, UINT8_MAX))
|
/external/iptables/iptables/ |
xtoptions.c | 379 xtables_strtoui(str, &end, &value, 0, max); 386 if (!xtables_strtoui(p, &end, &value, 0, max)) 407 if (xtables_strtoui(cb->arg, &tmp, NULL, 0, UINT8_MAX)) { 434 if (!xtables_strtoui(cb->arg, &end, &mark, 0, UINT32_MAX)) 440 !xtables_strtoui(end + 1, &end, &mask, 0, UINT32_MAX)) 478 if (!xtables_strtoui(cb->arg, NULL, &num, 0, 7)) { 680 if (!xtables_strtoui(cb->arg, NULL, &prefix_len, 0, cb->val.hlen))
|
xtables.c | 460 bool xtables_strtoui(const char *s, char **end, unsigned int *value, function 486 if (xtables_strtoui(port, NULL, &portnum, 0, UINT16_MAX) || 1167 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) 1178 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) 1186 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX)) 1274 if (!xtables_strtoui(mask, NULL, &bits, 0, 32)) [all...] |
xshared.c | 64 if (xtables_strtoui(pname, NULL, &proto, 0, UINT8_MAX)) {
|
ip6tables.c | 396 if (!xtables_strtoui(rule, NULL, &rulenum, 1, INT_MAX)) [all...] |
iptables.c | 401 if (!xtables_strtoui(rule, NULL, &rulenum, 1, INT_MAX)) [all...] |
/external/iptables/include/ |
xtables.h | 413 extern bool xtables_strtoui(const char *, char **, unsigned int *,
|