Warning: This file is not a C or C++ file. It does not have highlighting.
| 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 */ |
| 21 |
Warning: This file is not a C or C++ file. It does not have highlighting.
