Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xt_policy.h
Go to the documentation of this file.
1 #ifndef _XT_POLICY_H
2 #define _XT_POLICY_H
3 
4 #include <linux/types.h>
5 
6 #define XT_POLICY_MAX_ELEM 4
7 
13 };
14 
18 };
19 
22  daddr:1,
23  proto:1,
24  mode:1,
25  spi:1,
26  reqid:1;
27 };
28 
29 #ifndef __KERNEL__
31  struct in_addr a4;
32  struct in6_addr a6;
33 };
34 #endif
35 
37  union {
38 #ifdef __KERNEL__
39  struct {
40  union nf_inet_addr saddr;
41  union nf_inet_addr smask;
42  union nf_inet_addr daddr;
43  union nf_inet_addr dmask;
44  };
45 #else
46  struct {
51  };
52 #endif
53  };
58 
61 };
62 
67 };
68 
69 #endif /* _XT_POLICY_H */