Searched refs:acpar (Results 1 – 6 of 6) sorted by relevance
/Linux-v4.19/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()
|
D | em_ipt.c | 187 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/ |
D | ip6_tables.c | 266 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/ |
D | ip_tables.c | 242 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 …]
|
D | arp_tables.c | 194 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/ |
D | ebtables.c | 201 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()
|