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
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 …]
/net/ipv6/netfilter/
Dip6_tables.c280 struct xt_action_param acpar; in ip6t_do_table() local
293 acpar.hotdrop = false; in ip6t_do_table()
294 acpar.net = state->net; in ip6t_do_table()
295 acpar.in = state->in; in ip6t_do_table()
296 acpar.out = state->out; in ip6t_do_table()
297 acpar.family = NFPROTO_IPV6; in ip6t_do_table()
298 acpar.hooknum = hook; in ip6t_do_table()
332 acpar.thoff = 0; in ip6t_do_table()
334 &acpar.thoff, &acpar.fragoff, &acpar.hotdrop)) { in ip6t_do_table()
341 acpar.match = ematch->u.kernel.match; in ip6t_do_table()
[all …]
/net/ipv4/netfilter/
Dip_tables.c247 struct xt_action_param acpar; in ipt_do_table() local
261 acpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET; in ipt_do_table()
262 acpar.thoff = ip_hdrlen(skb); in ipt_do_table()
263 acpar.hotdrop = false; in ipt_do_table()
264 acpar.net = state->net; in ipt_do_table()
265 acpar.in = state->in; in ipt_do_table()
266 acpar.out = state->out; in ipt_do_table()
267 acpar.family = NFPROTO_IPV4; in ipt_do_table()
268 acpar.hooknum = hook; in ipt_do_table()
302 &e->ip, acpar.fragoff)) { in ipt_do_table()
[all …]
Darp_tables.c194 struct xt_action_param acpar; in arpt_do_table() local
220 acpar.net = state->net; in arpt_do_table()
221 acpar.in = state->in; in arpt_do_table()
222 acpar.out = state->out; in arpt_do_table()
223 acpar.hooknum = hook; in arpt_do_table()
224 acpar.family = NFPROTO_ARP; in arpt_do_table()
225 acpar.hotdrop = false; in arpt_do_table()
275 acpar.target = t->u.kernel.target; in arpt_do_table()
276 acpar.targinfo = t->data; in arpt_do_table()
277 verdict = t->u.kernel.target->target(skb, &acpar); in arpt_do_table()
[all …]
/net/bridge/netfilter/
Debtables.c195 struct xt_action_param acpar; in ebt_do_table() local
197 acpar.family = NFPROTO_BRIDGE; in ebt_do_table()
198 acpar.net = state->net; in ebt_do_table()
199 acpar.in = state->in; in ebt_do_table()
200 acpar.out = state->out; in ebt_do_table()
201 acpar.hotdrop = false; in ebt_do_table()
202 acpar.hooknum = hook; in ebt_do_table()
223 if (EBT_MATCH_ITERATE(point, ebt_do_match, skb, &acpar) != 0) in ebt_do_table()
225 if (acpar.hotdrop) { in ebt_do_table()
237 EBT_WATCHER_ITERATE(point, ebt_do_watcher, skb, &acpar); in ebt_do_table()
[all …]