Home
last modified time | relevance | path

Searched refs:port_to (Results 1 – 7 of 7) sorted by relevance

/linux-3.4.99/net/netfilter/ipset/
Dip_set_hash_ipport.c161 u32 ip, ip_to = 0, p = 0, port, port_to; in hash_ipport4_uadt() local
225 port_to = port = ntohs(data.port); in hash_ipport4_uadt()
227 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipport4_uadt()
228 if (port > port_to) in hash_ipport4_uadt()
229 swap(port, port_to); in hash_ipport4_uadt()
236 for (; p <= port_to; p++) { in hash_ipport4_uadt()
377 u32 port, port_to; in hash_ipport6_uadt() local
426 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipport6_uadt()
427 if (port > port_to) in hash_ipport6_uadt()
428 swap(port, port_to); in hash_ipport6_uadt()
[all …]
Dip_set_hash_ipportip.c165 u32 ip, ip_to = 0, p = 0, port, port_to; in hash_ipportip4_uadt() local
233 port_to = port = ntohs(data.port); in hash_ipportip4_uadt()
235 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipportip4_uadt()
236 if (port > port_to) in hash_ipportip4_uadt()
237 swap(port, port_to); in hash_ipportip4_uadt()
244 for (; p <= port_to; p++) { in hash_ipportip4_uadt()
391 u32 port, port_to; in hash_ipportip6_uadt() local
444 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipportip6_uadt()
445 if (port > port_to) in hash_ipportip6_uadt()
446 swap(port, port_to); in hash_ipportip6_uadt()
[all …]
Dip_set_hash_netport.c208 u32 port, port_to, p = 0, ip = 0, ip_to, last; in hash_netport4_uadt() local
272 port = port_to = ntohs(data.port); in hash_netport4_uadt()
274 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_netport4_uadt()
275 if (port_to < port) in hash_netport4_uadt()
276 swap(port, port_to); in hash_netport4_uadt()
297 for (; p <= port_to; p++) { in hash_netport4_uadt()
484 u32 port, port_to; in hash_netport6_uadt() local
549 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_netport6_uadt()
550 if (port > port_to) in hash_netport6_uadt()
551 swap(port, port_to); in hash_netport6_uadt()
[all …]
Dip_set_hash_ipportnet.c212 u32 ip, ip_to = 0, p = 0, port, port_to; in hash_ipportnet4_uadt() local
297 port_to = port = ntohs(data.port); in hash_ipportnet4_uadt()
299 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipportnet4_uadt()
300 if (port > port_to) in hash_ipportnet4_uadt()
301 swap(port, port_to); in hash_ipportnet4_uadt()
320 for (; p <= port_to; p++) { in hash_ipportnet4_uadt()
521 u32 port, port_to; in hash_ipportnet6_uadt() local
593 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipportnet6_uadt()
594 if (port > port_to) in hash_ipportnet6_uadt()
595 swap(port, port_to); in hash_ipportnet6_uadt()
[all …]
Dip_set_bitmap_port.c241 u16 id, port_to; in bitmap_port_uadt() local
268 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in bitmap_port_uadt()
269 if (port > port_to) { in bitmap_port_uadt()
270 swap(port, port_to); in bitmap_port_uadt()
275 port_to = port; in bitmap_port_uadt()
277 if (port_to > map->last_port) in bitmap_port_uadt()
280 for (; port <= port_to; port++) { in bitmap_port_uadt()
/linux-3.4.99/include/linux/
Dax25.h113 ax25_address port_to; member
/linux-3.4.99/net/ax25/
Dax25_dev.c154 if ((fwd_dev = ax25_addr_ax25dev(&fwd->port_to)) == NULL) in ax25_fwd_ioctl()