Imported Upstream version 2.4.3
[platform/upstream/audit.git] / audisp / audispd-config.h
1 /* audispd-config.h -- 
2  * Copyright 2007-08 Red Hat Inc., Durham, North Carolina.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  * Authors:
20  *   Steve Grubb <sgrubb@redhat.com>
21  * 
22  */
23
24 #ifndef AUDISPD_CONFIG_H
25 #define AUDISPD_CONFIG_H
26
27 #include "libaudit.h"
28
29 typedef enum { O_IGNORE, O_SYSLOG, O_SUSPEND, O_SINGLE,
30                 O_HALT } overflow_action_t;
31 typedef enum { N_NONE, N_HOSTNAME, N_FQD, N_NUMERIC, N_USER } node_t;
32
33 typedef struct daemon_conf
34 {
35         unsigned int q_depth;
36         overflow_action_t overflow_action;
37         unsigned int priority_boost;
38         unsigned int max_restarts;
39         node_t node_name_format;
40         const char *name;
41 } daemon_conf_t;
42
43 void clear_config(daemon_conf_t *config);
44 int  load_config(daemon_conf_t *config, const char *file);
45 void free_config(daemon_conf_t *config);
46
47 #endif
48