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

  /external/iptables/extensions/
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);
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);
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 164 milliseconds