Searched refs:acpar (Results 1 – 5 of 5) sorted by relevance
/net/sched/ |
D | em_ipset.c | 57 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/ |
D | ip6_tables.c | 265 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/ |
D | ip_tables.c | 241 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 …]
|
D | arp_tables.c | 194 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/ |
D | ebtables.c | 191 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()
|