Searched refs:acpar (Results 1 – 6 of 6) sorted by relevance
/Linux-v5.15/net/sched/ |
D | em_ipset.c | 54 struct xt_action_param acpar; in em_ipset_match() local 67 acpar.thoff = ip_hdrlen(skb); in em_ipset_match() 74 acpar.thoff = sizeof(struct ipv6hdr); in em_ipset_match() 98 acpar.state = &state; in em_ipset_match() 100 ret = ip_set_test(set->index, skb, &acpar, &opt); in em_ipset_match()
|
D | em_ipt.c | 209 struct xt_action_param acpar = {}; in em_ipt_match() local 240 acpar.match = im->match; in em_ipt_match() 241 acpar.matchinfo = im->match_data; in em_ipt_match() 242 acpar.state = &state; in em_ipt_match() 244 ret = im->match->match(skb, &acpar); in em_ipt_match()
|
/Linux-v5.15/net/ipv6/netfilter/ |
D | ip6_tables.c | 263 struct xt_action_param acpar; in ip6t_do_table() local 276 acpar.fragoff = 0; in ip6t_do_table() 277 acpar.hotdrop = false; in ip6t_do_table() 278 acpar.state = state; in ip6t_do_table() 307 acpar.thoff = 0; in ip6t_do_table() 309 &acpar.thoff, &acpar.fragoff, &acpar.hotdrop)) { in ip6t_do_table() 316 acpar.match = ematch->u.kernel.match; in ip6t_do_table() 317 acpar.matchinfo = ematch->data; in ip6t_do_table() 318 if (!acpar.match->match(skb, &acpar)) in ip6t_do_table() 365 acpar.target = t->u.kernel.target; in ip6t_do_table() [all …]
|
/Linux-v5.15/net/ipv4/netfilter/ |
D | ip_tables.c | 239 struct xt_action_param acpar; in ipt_do_table() local 253 acpar.fragoff = ntohs(ip->frag_off) & IP_OFFSET; in ipt_do_table() 254 acpar.thoff = ip_hdrlen(skb); in ipt_do_table() 255 acpar.hotdrop = false; in ipt_do_table() 256 acpar.state = state; in ipt_do_table() 285 &e->ip, acpar.fragoff)) { in ipt_do_table() 292 acpar.match = ematch->u.kernel.match; in ipt_do_table() 293 acpar.matchinfo = ematch->data; in ipt_do_table() 294 if (!acpar.match->match(skb, &acpar)) in ipt_do_table() 343 acpar.target = t->u.kernel.target; in ipt_do_table() [all …]
|
D | arp_tables.c | 195 struct xt_action_param acpar; in arpt_do_table() local 216 acpar.state = state; in arpt_do_table() 217 acpar.hotdrop = false; in arpt_do_table() 267 acpar.target = t->u.kernel.target; in arpt_do_table() 268 acpar.targinfo = t->data; in arpt_do_table() 269 verdict = t->u.kernel.target->target(skb, &acpar); in arpt_do_table() 279 } while (!acpar.hotdrop); in arpt_do_table() 283 if (acpar.hotdrop) in arpt_do_table()
|
/Linux-v5.15/net/bridge/netfilter/ |
D | ebtables.c | 206 struct xt_action_param acpar; in ebt_do_table() local 208 acpar.state = state; in ebt_do_table() 209 acpar.hotdrop = false; in ebt_do_table() 230 if (EBT_MATCH_ITERATE(point, ebt_do_match, skb, &acpar) != 0) in ebt_do_table() 232 if (acpar.hotdrop) { in ebt_do_table() 242 EBT_WATCHER_ITERATE(point, ebt_do_watcher, skb, &acpar); in ebt_do_table() 249 acpar.target = t->u.target; in ebt_do_table() 250 acpar.targinfo = t->data; in ebt_do_table() 251 verdict = t->u.target->target(skb, &acpar); in ebt_do_table()
|