Home
last modified time | relevance | path

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

/linux-2.6.39/net/netfilter/ipset/
Dip_set_hash_ipport.c151 u32 ip, ip_to, p, port, port_to; in hash_ipport4_uadt() local
216 port_to = port = ntohs(data.port); in hash_ipport4_uadt()
218 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipport4_uadt()
219 if (port > port_to) in hash_ipport4_uadt()
220 swap(port, port_to); in hash_ipport4_uadt()
224 for (p = port; p <= port_to; p++) { in hash_ipport4_uadt()
355 u32 port, port_to; in hash_ipport6_uadt() local
404 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipport6_uadt()
405 if (port > port_to) in hash_ipport6_uadt()
406 swap(port, port_to); in hash_ipport6_uadt()
[all …]
Dip_set_hash_ipportip.c155 u32 ip, ip_to, p, port, port_to; in hash_ipportip4_uadt() local
224 port_to = port = ntohs(data.port); in hash_ipportip4_uadt()
226 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipportip4_uadt()
227 if (port > port_to) in hash_ipportip4_uadt()
228 swap(port, port_to); in hash_ipportip4_uadt()
232 for (p = port; p <= port_to; p++) { in hash_ipportip4_uadt()
369 u32 port, port_to; in hash_ipportip6_uadt() local
422 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipportip6_uadt()
423 if (port > port_to) in hash_ipportip6_uadt()
424 swap(port, port_to); in hash_ipportip6_uadt()
[all …]
Dip_set_hash_ipportnet.c175 u32 ip, ip_to, p, port, port_to; in hash_ipportnet4_uadt() local
252 port_to = port = ntohs(data.port); in hash_ipportnet4_uadt()
254 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipportnet4_uadt()
255 if (port > port_to) in hash_ipportnet4_uadt()
256 swap(port, port_to); in hash_ipportnet4_uadt()
260 for (p = port; p <= port_to; p++) { in hash_ipportnet4_uadt()
423 u32 port, port_to; in hash_ipportnet6_uadt() local
484 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_ipportnet6_uadt()
485 if (port > port_to) in hash_ipportnet6_uadt()
486 swap(port, port_to); in hash_ipportnet6_uadt()
[all …]
Dip_set_hash_netport.c171 u32 port, port_to; in hash_netport4_uadt() local
224 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_netport4_uadt()
225 if (port > port_to) in hash_netport4_uadt()
226 swap(port, port_to); in hash_netport4_uadt()
228 for (; port <= port_to; port++) { in hash_netport4_uadt()
384 u32 port, port_to; in hash_netport6_uadt() local
437 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in hash_netport6_uadt()
438 if (port > port_to) in hash_netport6_uadt()
439 swap(port, port_to); in hash_netport6_uadt()
441 for (; port <= port_to; port++) { in hash_netport6_uadt()
Dip_set_bitmap_port.c239 u16 id, port_to; in bitmap_port_uadt() local
266 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]); in bitmap_port_uadt()
267 if (port > port_to) { in bitmap_port_uadt()
268 swap(port, port_to); in bitmap_port_uadt()
273 port_to = port; in bitmap_port_uadt()
275 if (port_to > map->last_port) in bitmap_port_uadt()
278 for (; port <= port_to; port++) { in bitmap_port_uadt()
/linux-2.6.39/include/linux/
Dax25.h113 ax25_address port_to; member
/linux-2.6.39/net/ax25/
Dax25_dev.c155 if ((fwd_dev = ax25_addr_ax25dev(&fwd->port_to)) == NULL) in ax25_fwd_ioctl()