Searched refs:acpar (Results 1 - 5 of 5) sorted by relevance
/linux-4.1.27/net/sched/ |
H A D | em_ipset.c | 57 struct xt_action_param acpar; em_ipset_match() local 64 acpar.family = NFPROTO_IPV4; em_ipset_match() 67 acpar.thoff = ip_hdrlen(skb); em_ipset_match() 70 acpar.family = NFPROTO_IPV6; em_ipset_match() 74 acpar.thoff = sizeof(struct ipv6hdr); em_ipset_match() 80 acpar.hooknum = 0; em_ipset_match() 82 opt.family = acpar.family; em_ipset_match() 98 acpar.in = indev ? indev : dev; em_ipset_match() 99 acpar.out = dev; em_ipset_match() 101 ret = ip_set_test(set->index, skb, &acpar, &opt); em_ipset_match()
|
/linux-4.1.27/net/ipv6/netfilter/ |
H A D | ip6_tables.c | 331 struct xt_action_param acpar; ip6t_do_table() local 343 acpar.hotdrop = false; ip6t_do_table() 344 acpar.in = state->in; ip6t_do_table() 345 acpar.out = state->out; ip6t_do_table() 346 acpar.family = NFPROTO_IPV6; ip6t_do_table() 347 acpar.hooknum = hook; ip6t_do_table() 372 acpar.thoff = 0; ip6t_do_table() 374 &acpar.thoff, &acpar.fragoff, &acpar.hotdrop)) { ip6t_do_table() 381 acpar.match = ematch->u.kernel.match; xt_ematch_foreach() 382 acpar.matchinfo = ematch->data; xt_ematch_foreach() 383 if (!acpar.match->match(skb, &acpar)) xt_ematch_foreach() 429 acpar.target = t->u.kernel.target; 430 acpar.targinfo = t->data; 432 verdict = t->u.kernel.target->target(skb, &acpar); 438 } while (!acpar.hotdrop); 448 if (acpar.hotdrop)
|
/linux-4.1.27/net/ipv4/netfilter/ |
H A D | ip_tables.c | 303 struct xt_action_param acpar; ipt_do_table() local 316 acpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET; ipt_do_table() 317 acpar.thoff = ip_hdrlen(skb); ipt_do_table() 318 acpar.hotdrop = false; ipt_do_table() 319 acpar.in = state->in; ipt_do_table() 320 acpar.out = state->out; ipt_do_table() 321 acpar.family = NFPROTO_IPV4; ipt_do_table() 322 acpar.hooknum = hook; ipt_do_table() 351 &e->ip, acpar.fragoff)) { ipt_do_table() 358 acpar.match = ematch->u.kernel.match; xt_ematch_foreach() 359 acpar.matchinfo = ematch->data; xt_ematch_foreach() 360 if (!acpar.match->match(skb, &acpar)) xt_ematch_foreach() 414 acpar.target = t->u.kernel.target; 415 acpar.targinfo = t->data; 417 verdict = t->u.kernel.target->target(skb, &acpar); 425 } while (!acpar.hotdrop); 435 if (acpar.hotdrop)
|
H A D | arp_tables.c | 261 struct xt_action_param acpar; arpt_do_table() local 283 acpar.in = state->in; arpt_do_table() 284 acpar.out = state->out; arpt_do_table() 285 acpar.hooknum = hook; arpt_do_table() 286 acpar.family = NFPROTO_ARP; arpt_do_table() 287 acpar.hotdrop = false; arpt_do_table() 334 acpar.target = t->u.kernel.target; arpt_do_table() 335 acpar.targinfo = t->data; arpt_do_table() 336 verdict = t->u.kernel.target->target(skb, &acpar); arpt_do_table() 346 } while (!acpar.hotdrop); arpt_do_table() 350 if (acpar.hotdrop) arpt_do_table()
|
/linux-4.1.27/net/bridge/netfilter/ |
H A D | ebtables.c | 199 struct xt_action_param acpar; ebt_do_table() local 201 acpar.family = NFPROTO_BRIDGE; ebt_do_table() 202 acpar.in = in; ebt_do_table() 203 acpar.out = out; ebt_do_table() 204 acpar.hotdrop = false; ebt_do_table() 205 acpar.hooknum = hook; ebt_do_table() 226 if (EBT_MATCH_ITERATE(point, ebt_do_match, skb, &acpar) != 0) ebt_do_table() 228 if (acpar.hotdrop) { ebt_do_table() 239 EBT_WATCHER_ITERATE(point, ebt_do_watcher, skb, &acpar); ebt_do_table() 247 acpar.target = t->u.target; ebt_do_table() 248 acpar.targinfo = t->data; ebt_do_table() 249 verdict = t->u.target->target(skb, &acpar); ebt_do_table()
|
Completed in 222 milliseconds