Deleted Added
full compact
auditd.h (155131) auditd.h (155364)
1/*
2 * Copyright (c) 2005 Apple Computer, Inc.
3 * All rights reserved.
4 *
5 * @APPLE_BSD_LICENSE_HEADER_START@
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 16 unchanged lines hidden (view full) ---

25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * @APPLE_BSD_LICENSE_HEADER_END@
32 *
1/*
2 * Copyright (c) 2005 Apple Computer, Inc.
3 * All rights reserved.
4 *
5 * @APPLE_BSD_LICENSE_HEADER_START@
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 16 unchanged lines hidden (view full) ---

25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * @APPLE_BSD_LICENSE_HEADER_END@
32 *
33 * $P4: //depot/projects/trustedbsd/openbsm/bin/auditd/auditd.h#4 $
33 * $P4: //depot/projects/trustedbsd/openbsm/bin/auditd/auditd.h#5 $
34 */
35
36#ifndef _AUDITD_H_
37#define _AUDITD_H_
38
39#include <sys/types.h>
40#include <sys/queue.h>
41#include <syslog.h>
42
43#define MAX_DIR_SIZE 255
44#define AUDITD_NAME "auditd"
45
34 */
35
36#ifndef _AUDITD_H_
37#define _AUDITD_H_
38
39#include <sys/types.h>
40#include <sys/queue.h>
41#include <syslog.h>
42
43#define MAX_DIR_SIZE 255
44#define AUDITD_NAME "auditd"
45
46/*
47 * If defined, then the audit daemon will attempt to chown newly created logs
48 * to this group. Otherwise, they will be the default for the user running
49 * auditd, likely the audit group.
50 */
51#define AUDIT_REVIEW_GROUP "audit"
52
46#define POSTFIX_LEN 16
47#define NOT_TERMINATED ".not_terminated"
48
49struct dir_ent {
50 char *dirname;
51 char softlim;
52 TAILQ_ENTRY(dir_ent) dirs;
53};

--- 27 unchanged lines hidden ---
53#define POSTFIX_LEN 16
54#define NOT_TERMINATED ".not_terminated"
55
56struct dir_ent {
57 char *dirname;
58 char softlim;
59 TAILQ_ENTRY(dir_ent) dirs;
60};

--- 27 unchanged lines hidden ---