File: 2.6.35.c

package info (click to toggle)
xtables-addons 3.30-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,588 kB
  • sloc: ansic: 11,712; sh: 5,151; perl: 643; makefile: 153; python: 15
file content (39 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (7)
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,
		struct xt_action_param *,
	);

	/* error code */
	int
	(*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_action_param *,
	);

	/* error code */
	int
	(*checkentry)(
		const struct xt_tgchk_param *,
	);

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