]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/uapi/linux/netfilter/xt_cluster.h
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-bionic-kernel.git] / include / uapi / linux / netfilter / xt_cluster.h
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _XT_CLUSTER_MATCH_H
3 #define _XT_CLUSTER_MATCH_H
4
5 #include <linux/types.h>
6
7 enum xt_cluster_flags {
8 XT_CLUSTER_F_INV = (1 << 0)
9 };
10
11 struct xt_cluster_match_info {
12 __u32 total_nodes;
13 __u32 node_mask;
14 __u32 hash_seed;
15 __u32 flags;
16 };
17
18 #define XT_CLUSTER_NODES_MAX 32
19
20 #endif /* _XT_CLUSTER_MATCH_H */