Searched refs:acpar (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/net/sched/ |
D | em_ipset.c | 57 struct xt_action_param acpar; in em_ipset_match() local 64 acpar.family = NFPROTO_IPV4; in em_ipset_match() 67 acpar.thoff = ip_hdrlen(skb); in em_ipset_match() 70 acpar.family = NFPROTO_IPV6; in em_ipset_match() 74 acpar.thoff = sizeof(struct ipv6hdr); in em_ipset_match() 80 acpar.hooknum = 0; in em_ipset_match() 82 opt.family = acpar.family; in em_ipset_match() 98 acpar.net = em->net; in em_ipset_match() 99 acpar.in = indev ? indev : dev; in em_ipset_match() 100 acpar.out = dev; in em_ipset_match() [all …]
|
/linux-4.4.14/net/ipv6/netfilter/ |
D | ip6_tables.c | 329 struct xt_action_param acpar; in ip6t_do_table() local 342 acpar.hotdrop = false; in ip6t_do_table() 343 acpar.net = state->net; in ip6t_do_table() 344 acpar.in = state->in; in ip6t_do_table() 345 acpar.out = state->out; in ip6t_do_table() 346 acpar.family = NFPROTO_IPV6; in ip6t_do_table() 347 acpar.hooknum = hook; in ip6t_do_table() 381 acpar.thoff = 0; in ip6t_do_table() 383 &acpar.thoff, &acpar.fragoff, &acpar.hotdrop)) { in ip6t_do_table() 390 acpar.match = ematch->u.kernel.match; in ip6t_do_table() [all …]
|
/linux-4.4.14/net/ipv4/netfilter/ |
D | ip_tables.c | 301 struct xt_action_param acpar; in ipt_do_table() local 315 acpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET; in ipt_do_table() 316 acpar.thoff = ip_hdrlen(skb); in ipt_do_table() 317 acpar.hotdrop = false; in ipt_do_table() 318 acpar.net = state->net; in ipt_do_table() 319 acpar.in = state->in; in ipt_do_table() 320 acpar.out = state->out; in ipt_do_table() 321 acpar.family = NFPROTO_IPV4; in ipt_do_table() 322 acpar.hooknum = hook; in ipt_do_table() 360 &e->ip, acpar.fragoff)) { in ipt_do_table() [all …]
|
D | arp_tables.c | 262 struct xt_action_param acpar; in arpt_do_table() local 288 acpar.net = state->net; in arpt_do_table() 289 acpar.in = state->in; in arpt_do_table() 290 acpar.out = state->out; in arpt_do_table() 291 acpar.hooknum = hook; in arpt_do_table() 292 acpar.family = NFPROTO_ARP; in arpt_do_table() 293 acpar.hotdrop = false; in arpt_do_table() 339 acpar.target = t->u.kernel.target; in arpt_do_table() 340 acpar.targinfo = t->data; in arpt_do_table() 341 verdict = t->u.kernel.target->target(skb, &acpar); in arpt_do_table() [all …]
|
/linux-4.4.14/net/bridge/netfilter/ |
D | ebtables.c | 200 struct xt_action_param acpar; in ebt_do_table() local 202 acpar.family = NFPROTO_BRIDGE; in ebt_do_table() 203 acpar.net = state->net; in ebt_do_table() 204 acpar.in = state->in; in ebt_do_table() 205 acpar.out = state->out; in ebt_do_table() 206 acpar.hotdrop = false; in ebt_do_table() 207 acpar.hooknum = hook; in ebt_do_table() 228 if (EBT_MATCH_ITERATE(point, ebt_do_match, skb, &acpar) != 0) in ebt_do_table() 230 if (acpar.hotdrop) { in ebt_do_table() 241 EBT_WATCHER_ITERATE(point, ebt_do_watcher, skb, &acpar); in ebt_do_table() [all …]
|