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_AUDIT.h (528B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * Header file for iptables xt_AUDIT target
  4. *
  5. * (C) 2010-2011 Thomas Graf <tgraf@redhat.com>
  6. * (C) 2010-2011 Red Hat, Inc.
  7. */
  8. #ifndef _XT_AUDIT_TARGET_H
  9. #define _XT_AUDIT_TARGET_H
  10. #include <linux/types.h>
  11. enum {
  12. XT_AUDIT_TYPE_ACCEPT = 0,
  13. XT_AUDIT_TYPE_DROP,
  14. XT_AUDIT_TYPE_REJECT,
  15. __XT_AUDIT_TYPE_MAX,
  16. };
  17. #define XT_AUDIT_TYPE_MAX (__XT_AUDIT_TYPE_MAX - 1)
  18. struct xt_audit_info {
  19. __u8 type; /* XT_AUDIT_TYPE_* */
  20. };
  21. #endif /* _XT_AUDIT_TARGET_H */