logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

xt_cluster.h (374B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _XT_CLUSTER_MATCH_H
  3. #define _XT_CLUSTER_MATCH_H
  4. #include <linux/types.h>
  5. enum xt_cluster_flags {
  6. XT_CLUSTER_F_INV = (1 << 0)
  7. };
  8. struct xt_cluster_match_info {
  9. __u32 total_nodes;
  10. __u32 node_mask;
  11. __u32 hash_seed;
  12. __u32 flags;
  13. };
  14. #define XT_CLUSTER_NODES_MAX 32
  15. #endif /* _XT_CLUSTER_MATCH_H */