Searched refs:xtables_parse_port (Results 1 – 7 of 7) sorted by relevance
/external/iptables/extensions/ |
D | libebt_ip.c | 74 ports[0] = ports[1] = xtables_parse_port(buffer, NULL); in parse_port_range() 79 ports[0] = buffer[0] ? xtables_parse_port(buffer, NULL) : 0; in parse_port_range() 80 ports[1] = cp[0] ? xtables_parse_port(cp, NULL) : 0xFFFF; in parse_port_range()
|
D | libxt_tcp.c | 48 ports[0] = ports[1] = xtables_parse_port(buffer, "tcp"); in parse_tcp_ports() 53 ports[0] = buffer[0] ? xtables_parse_port(buffer, "tcp") : 0; in parse_tcp_ports() 54 ports[1] = cp[0] ? xtables_parse_port(cp, "tcp") : 0xFFFF; in parse_tcp_ports()
|
D | libxt_sctp.c | 75 ports[0] = ports[1] = xtables_parse_port(buffer, "sctp"); in parse_sctp_ports() 81 ports[0] = buffer[0] ? xtables_parse_port(buffer, "sctp") : 0; in parse_sctp_ports() 82 ports[1] = cp[0] ? xtables_parse_port(cp, "sctp") : 0xFFFF; in parse_sctp_ports()
|
D | libxt_multiport.c | 97 ports[i] = xtables_parse_port(cp, proto); in parse_multi_ports() 128 multiinfo->ports[i] = xtables_parse_port(cp, proto); in parse_multi_ports_v1() 131 multiinfo->ports[++i] = xtables_parse_port(range, proto); in parse_multi_ports_v1()
|
/external/iproute2/include/ |
D | xtables.h | 452 extern uint16_t xtables_parse_port(const char *port, const char *proto);
|
/external/iptables/include/ |
D | xtables.h | 485 extern uint16_t xtables_parse_port(const char *port, const char *proto);
|
/external/iptables/libxtables/ |
D | xtables.c | 506 uint16_t xtables_parse_port(const char *port, const char *proto) in xtables_parse_port() function
|