File: 2.6.32.c

package info (click to toggle)
xtables-addons 1.42-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,392 kB
  • sloc: ansic: 12,409; sh: 11,029; perl: 186; makefile: 116
file content (39 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
match:

	/* true/false */
	bool
	(*match)(
		const struct sk_buff *skb,
		const struct xt_match_param *,
	);

	/* true/false */
	bool
	(*checkentry)(
		const struct xt_mtchk_param *,
	);

	void
	(*destroy)(
		const struct xt_mtdtor_param *,
	);

target:

	/* verdict */
	unsigned int
	(*target)(
		struct sk_buff *skb,
		const struct xt_target_param *,
	);

	/* true/false */
	bool
	(*checkentry)(
		const struct xt_tgchk_param *,
	);

	void
	(*destroy)(
		const struct xt_tgdtor_param *,
	);