File: xt-a.c

package info (click to toggle)
xtables-addons 2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,296 kB
  • ctags: 1,415
  • sloc: sh: 11,559; ansic: 10,329; perl: 186; makefile: 121
file content (39 lines) | stat: -rw-r--r-- 488 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 **pskb,
		const struct xt_action_param *,
	);

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

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