Home
last modified time | relevance | path

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

/Linux-v4.19/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()
Dem_ipt.c187 struct xt_action_param acpar = {}; in em_ipt_match() local
200 acpar.match = im->match; in em_ipt_match()
201 acpar.matchinfo = im->match_data; in em_ipt_match()
202 acpar.state = &state; in em_ipt_match()
204 ret = im->match->match(skb, &acpar); in em_ipt_match()
/Linux-v4.19/net/ipv6/netfilter/
Dip6_tables.c266 struct xt_action_param acpar; in ip6t_do_table() local
279 acpar.hotdrop = false; in ip6t_do_table()
280 acpar.state = state; in ip6t_do_table()
309 acpar.thoff = 0; in ip6t_do_table()
311 &acpar.thoff, &acpar.fragoff, &acpar.hotdrop)) { in ip6t_do_table()
318 acpar.match = ematch->u.kernel.match; in ip6t_do_table()
319 acpar.matchinfo = ematch->data; in ip6t_do_table()
320 if (!acpar.match->match(skb, &acpar)) in ip6t_do_table()
367 acpar.target = t->u.kernel.target; in ip6t_do_table()
368 acpar.targinfo = t->data; in ip6t_do_table()
[all …]
/Linux-v4.19/net/ipv4/netfilter/
Dip_tables.c242 struct xt_action_param acpar; in ipt_do_table() local
256 acpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET; in ipt_do_table()
257 acpar.thoff = ip_hdrlen(skb); in ipt_do_table()
258 acpar.hotdrop = false; in ipt_do_table()
259 acpar.state = state; in ipt_do_table()
288 &e->ip, acpar.fragoff)) { in ipt_do_table()
295 acpar.match = ematch->u.kernel.match; in ipt_do_table()
296 acpar.matchinfo = ematch->data; in ipt_do_table()
297 if (!acpar.match->match(skb, &acpar)) in ipt_do_table()
346 acpar.target = t->u.kernel.target; in ipt_do_table()
[all …]
Darp_tables.c194 struct xt_action_param acpar; in arpt_do_table() local
215 acpar.state = state; in arpt_do_table()
216 acpar.hotdrop = false; in arpt_do_table()
266 acpar.target = t->u.kernel.target; in arpt_do_table()
267 acpar.targinfo = t->data; in arpt_do_table()
268 verdict = t->u.kernel.target->target(skb, &acpar); in arpt_do_table()
278 } while (!acpar.hotdrop); in arpt_do_table()
282 if (acpar.hotdrop) in arpt_do_table()
/Linux-v4.19/net/bridge/netfilter/
Debtables.c201 struct xt_action_param acpar; in ebt_do_table() local
203 acpar.state = state; in ebt_do_table()
204 acpar.hotdrop = false; in ebt_do_table()
225 if (EBT_MATCH_ITERATE(point, ebt_do_match, skb, &acpar) != 0) in ebt_do_table()
227 if (acpar.hotdrop) { in ebt_do_table()
237 EBT_WATCHER_ITERATE(point, ebt_do_watcher, skb, &acpar); in ebt_do_table()
244 acpar.target = t->u.target; in ebt_do_table()
245 acpar.targinfo = t->data; in ebt_do_table()
246 verdict = t->u.target->target(skb, &acpar); in ebt_do_table()