]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - include/linux/netfilter/xt_cluster.h
Merge branch 'topic/lx6464es' into for-linus
[mirror_ubuntu-artful-kernel.git] / include / linux / netfilter / xt_cluster.h
1 #ifndef _XT_CLUSTER_MATCH_H
2 #define _XT_CLUSTER_MATCH_H
3
4 enum xt_cluster_flags {
5 XT_CLUSTER_F_INV = (1 << 0)
6 };
7
8 struct xt_cluster_match_info {
9 u_int32_t total_nodes;
10 u_int32_t node_mask;
11 u_int32_t hash_seed;
12 u_int32_t flags;
13 };
14
15 #define XT_CLUSTER_NODES_MAX 32
16
17 #endif /* _XT_CLUSTER_MATCH_H */