7e82693756cd2de078b133494bc88c9632a97087
[ossec-hids.git] / src / config / rootcheck-config.h
1 /*   $OSSEC, rootcheck.h, v0.1, 2005/10/03, Daniel B. Cid$   */
2
3 /* Copyright (C) 2009 Trend Micro Inc.
4  * All right reserved.
5  *
6  * This program is a free software; you can redistribute it
7  * and/or modify it under the terms of the GNU General Public
8  * License (version 2) as published by the FSF - Free Software
9  * Foundation
10  */
11        
12
13 #ifndef __CROOTCHECK_H
14
15 #define __CROOTCHECK_H
16
17 #include <stdio.h>
18
19 typedef struct _rkconfig
20 {
21     char *workdir;
22     char *basedir;
23     char *rootkit_files;
24     char *rootkit_trojans;
25     char **unixaudit;
26     char **ignore;
27     char *winaudit;
28     char *winmalware;
29     char *winapps;
30     char **alert_msg;
31
32     FILE *fp;
33     int daemon;
34     int notify; /* QUEUE or SYSLOG */
35     int scanall;
36     int readall;
37     int disabled;
38
39     int time;
40     int queue;
41 }rkconfig;
42
43 #endif
44
45 /* EOF */