]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/uapi/linux/netfilter/xt_cluster.h
Merge branch 'drm-fixes-3.7' of git://people.freedesktop.org/~agd5f/linux into drm...
[mirror_ubuntu-bionic-kernel.git] / include / uapi / linux / netfilter / xt_cluster.h
1 #ifndef _XT_CLUSTER_MATCH_H
2 #define _XT_CLUSTER_MATCH_H
3
4 #include <linux/types.h>
5
6 enum xt_cluster_flags {
7 XT_CLUSTER_F_INV = (1 << 0)
8 };
9
10 struct xt_cluster_match_info {
11 __u32 total_nodes;
12 __u32 node_mask;
13 __u32 hash_seed;
14 __u32 flags;
15 };
16
17 #define XT_CLUSTER_NODES_MAX 32
18
19 #endif /* _XT_CLUSTER_MATCH_H */