1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3 
4 #include <linux/audit.h>
5 
6 #if HAVE_AUDIT
7 #include <libaudit.h>
8 #endif
9 
10 #ifndef AUDIT_SERVICE_START
11 #define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
12 #endif
13 
14 #ifndef AUDIT_SERVICE_STOP
15 #define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
16 #endif
17 
18 #ifndef MAX_AUDIT_MESSAGE_LENGTH
19 #define MAX_AUDIT_MESSAGE_LENGTH 8970
20 #endif
21 
22 #ifndef AUDIT_NLGRP_MAX
23 #define AUDIT_NLGRP_READLOG 1
24 #endif
25