This commit was manufactured by cvs2svn to create branch 'vserver'.
[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 hashsize;              /* hash size */
12         uint16_t probes;                /* max number of probes  */
13         uint16_t resize;                /* resize factor in percent */
14         ip_set_ip_t netmask;            /* netmask */
15         void *initval[0];               /* initvals for jhash_1word */
16 };
17
18 struct ip_set_req_iphash_create {
19         uint32_t hashsize;
20         uint16_t probes;
21         uint16_t resize;
22         ip_set_ip_t netmask;
23 };
24
25 struct ip_set_req_iphash {
26         ip_set_ip_t ip;
27 };
28
29 #endif  /* __IP_SET_IPHASH_H */