allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / linux / netfilter_ipv4 / ipt_CLUSTERIP.h
blobd9bceedfb3dca67c9c8e3290480e7cb2d2a2b28e
1 #ifndef _IPT_CLUSTERIP_H_target
2 #define _IPT_CLUSTERIP_H_target
4 enum clusterip_hashmode {
5 CLUSTERIP_HASHMODE_SIP = 0,
6 CLUSTERIP_HASHMODE_SIP_SPT,
7 CLUSTERIP_HASHMODE_SIP_SPT_DPT,
8 };
10 #define CLUSTERIP_HASHMODE_MAX CLUSTERIP_HASHMODE_SIP_SPT_DPT
12 #define CLUSTERIP_MAX_NODES 16
14 #define CLUSTERIP_FLAG_NEW 0x00000001
16 struct clusterip_config;
18 struct ipt_clusterip_tgt_info {
20 u_int32_t flags;
22 /* only relevant for new ones */
23 u_int8_t clustermac[6];
24 u_int16_t num_total_nodes;
25 u_int16_t num_local_nodes;
26 u_int16_t local_nodes[CLUSTERIP_MAX_NODES];
27 enum clusterip_hashmode hash_mode;
28 u_int32_t hash_initval;
30 struct clusterip_config *config;
33 #endif /*_IPT_CLUSTERIP_H_target*/