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_rpfilter.h (320B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _XT_RPATH_H
  3. #define _XT_RPATH_H
  4. #include <linux/types.h>
  5. enum {
  6. XT_RPFILTER_LOOSE = 1 << 0,
  7. XT_RPFILTER_VALID_MARK = 1 << 1,
  8. XT_RPFILTER_ACCEPT_LOCAL = 1 << 2,
  9. XT_RPFILTER_INVERT = 1 << 3,
  10. };
  11. struct xt_rpfilter_info {
  12. __u8 flags;
  13. };
  14. #endif