June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
01: /* 02: * Header file for iptables xt_AUDIT target 03: * 04: * (C) 2010-2011 Thomas Graf <tgraf@redhat.com> 05: * (C) 2010-2011 Red Hat, Inc. 06: * 07: * This program is free software; you can redistribute it and/or modify 08: * it under the terms of the GNU General Public License version 2 as 09: * published by the Free Software Foundation. 10: */ 11: 12: #ifndef _XT_AUDIT_TARGET_H 13: #define _XT_AUDIT_TARGET_H 14: 15: #include <linux/types.h> 16: 17: enum { 18: XT_AUDIT_TYPE_ACCEPT = 0, 19: XT_AUDIT_TYPE_DROP, 20: XT_AUDIT_TYPE_REJECT, 21: __XT_AUDIT_TYPE_MAX, 22: }; 23: 24: #define XT_AUDIT_TYPE_MAX (__XT_AUDIT_TYPE_MAX - 1) 25: 26: struct xt_audit_info { 27: __u8 type; /* XT_AUDIT_TYPE_* */ 28: }; 29: 30: #endif /* _XT_AUDIT_TARGET_H */ 31: