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

  /external/iptables/extensions/
libip6t_REDIRECT.c 43 unsigned int port, maxport; local
58 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX) &&
59 (maxport = xtables_service_to_port(end + 1, NULL)) == (unsigned)-1)
62 if (maxport < port)
66 range->max_proto.tcp.port = htons(maxport);
libipt_REDIRECT.c 44 unsigned int port, maxport; local
59 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX) &&
60 (maxport = xtables_service_to_port(end + 1, NULL)) == (unsigned)-1)
63 if (maxport < port)
67 mr->range[0].max.tcp.port = htons(maxport);
libip6t_MASQUERADE.c 44 unsigned int port, maxport; local
58 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX))
61 if (maxport < port)
65 r->max_proto.tcp.port = htons(maxport);
libipt_MASQUERADE.c 45 unsigned int port, maxport; local
59 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX))
62 if (maxport < port)
66 mr->range[0].max.tcp.port = htons(maxport);
libip6t_DNAT.c 100 int maxport; local
102 maxport = atoi(dash + 1);
103 if (maxport <= 0 || maxport > 65535)
106 if (maxport < port)
111 range->max_proto.tcp.port = htons(maxport);
libip6t_SNAT.c 100 int maxport; local
102 maxport = atoi(dash + 1);
103 if (maxport <= 0 || maxport > 65535)
106 if (maxport < port)
111 range->max_proto.tcp.port = htons(maxport);
libipt_DNAT.c 104 int maxport; local
106 maxport = atoi(dash + 1);
107 if (maxport <= 0 || maxport > 65535)
110 if (maxport < port)
115 range.max.tcp.port = htons(maxport);
libipt_SNAT.c 104 int maxport; local
106 maxport = atoi(dash + 1);
107 if (maxport <= 0 || maxport > 65535)
110 if (maxport < port)
115 range.max.tcp.port = htons(maxport);

Completed in 727 milliseconds