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_connlabel.h (360B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _XT_CONNLABEL_H
  3. #define _XT_CONNLABEL_H
  4. #include <linux/types.h>
  5. #define XT_CONNLABEL_MAXBIT 127
  6. enum xt_connlabel_mtopts {
  7. XT_CONNLABEL_OP_INVERT = 1 << 0,
  8. XT_CONNLABEL_OP_SET = 1 << 1,
  9. };
  10. struct xt_connlabel_mtinfo {
  11. __u16 bit;
  12. __u16 options;
  13. };
  14. #endif /* _XT_CONNLABEL_H */