Home
last modified time | relevance | path

Searched refs:acpar (Results 1 – 5 of 5) sorted by relevance

/net/sched/
Dem_ipset.c57 struct xt_action_param acpar; in em_ipset_match() local
70 acpar.thoff = ip_hdrlen(skb); in em_ipset_match()
77 acpar.thoff = sizeof(struct ipv6hdr); in em_ipset_match()
101 acpar.state = &state; in em_ipset_match()
103 ret = ip_set_test(set->index, skb, &acpar, &opt); in em_ipset_match()
/net/ipv6/netfilter/
Dip6_tables.c265 struct xt_action_param acpar; in ip6t_do_table() local
278 acpar.hotdrop = false; in ip6t_do_table()
279 acpar.state = state; in ip6t_do_table()
313 acpar.thoff = 0; in ip6t_do_table()
315 &acpar.thoff, &acpar.fragoff, &acpar.hotdrop)) { in ip6t_do_table()
322 acpar.match = ematch->u.kernel.match; in ip6t_do_table()
323 acpar.matchinfo = ematch->data; in ip6t_do_table()
324 if (!acpar.match->match(skb, &acpar)) in ip6t_do_table()
371 acpar.target = t->u.kernel.target; in ip6t_do_table()
372 acpar.targinfo = t->data; in ip6t_do_table()
[all …]
/net/ipv4/netfilter/
Dip_tables.c241 struct xt_action_param acpar; in ipt_do_table() local
255 acpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET; in ipt_do_table()
256 acpar.thoff = ip_hdrlen(skb); in ipt_do_table()
257 acpar.hotdrop = false; in ipt_do_table()
258 acpar.state = state; in ipt_do_table()
292 &e->ip, acpar.fragoff)) { in ipt_do_table()
299 acpar.match = ematch->u.kernel.match; in ipt_do_table()
300 acpar.matchinfo = ematch->data; in ipt_do_table()
301 if (!acpar.match->match(skb, &acpar)) in ipt_do_table()
350 acpar.target = t->u.kernel.target; in ipt_do_table()
[all …]
Darp_tables.c194 struct xt_action_param acpar; in arpt_do_table() local
220 acpar.state = state; in arpt_do_table()
221 acpar.hotdrop = false; in arpt_do_table()
271 acpar.target = t->u.kernel.target; in arpt_do_table()
272 acpar.targinfo = t->data; in arpt_do_table()
273 verdict = t->u.kernel.target->target(skb, &acpar); in arpt_do_table()
283 } while (!acpar.hotdrop); in arpt_do_table()
287 if (acpar.hotdrop) in arpt_do_table()
/net/bridge/netfilter/
Debtables.c191 struct xt_action_param acpar; in ebt_do_table() local
193 acpar.state = state; in ebt_do_table()
194 acpar.hotdrop = false; in ebt_do_table()
215 if (EBT_MATCH_ITERATE(point, ebt_do_match, skb, &acpar) != 0) in ebt_do_table()
217 if (acpar.hotdrop) { in ebt_do_table()
229 EBT_WATCHER_ITERATE(point, ebt_do_watcher, skb, &acpar); in ebt_do_table()
237 acpar.target = t->u.target; in ebt_do_table()
238 acpar.targinfo = t->data; in ebt_do_table()
239 verdict = t->u.target->target(skb, &acpar); in ebt_do_table()