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_devgroup.h (429B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _XT_DEVGROUP_H
  3. #define _XT_DEVGROUP_H
  4. #include <linux/types.h>
  5. enum xt_devgroup_flags {
  6. XT_DEVGROUP_MATCH_SRC = 0x1,
  7. XT_DEVGROUP_INVERT_SRC = 0x2,
  8. XT_DEVGROUP_MATCH_DST = 0x4,
  9. XT_DEVGROUP_INVERT_DST = 0x8,
  10. };
  11. struct xt_devgroup_info {
  12. __u32 flags;
  13. __u32 src_group;
  14. __u32 src_mask;
  15. __u32 dst_group;
  16. __u32 dst_mask;
  17. };
  18. #endif /* _XT_DEVGROUP_H */