Merge to Fedora kernel-2.6.18-1.2260_FC5 patched with stable patch-2.6.18.5-vs2.0...
[linux-2.6.git] / include / linux / netfilter_ipv4 / ip_set_iphash.h
1 #ifndef __IP_SET_IPHASH_H
2 #define __IP_SET_IPHASH_H
3
4 #include <linux/netfilter_ipv4/ip_set.h>
5
6 #define SETTYPE_NAME "iphash"
7 #define MAX_RANGE 0x0000FFFF
8
9 struct ip_set_iphash {
10         ip_set_ip_t *members;           /* the iphash proper */
11         uint32_t elements;              /* number of elements */
12         uint32_t hashsize;              /* hash size */
13         uint16_t probes;                /* max number of probes  */
14         uint16_t resize;                /* resize factor in percent */
15         ip_set_ip_t netmask;            /* netmask */
16         void *initval[0];               /* initvals for jhash_1word */
17 };
18
19 struct ip_set_req_iphash_create {
20         uint32_t hashsize;
21         uint16_t probes;
22         uint16_t resize;
23         ip_set_ip_t netmask;
24 };
25
26 struct ip_set_req_iphash {
27         ip_set_ip_t ip;
28 };
29
30 #endif  /* __IP_SET_IPHASH_H */