Imported Upstream version 2.7
[ossec-hids.git] / src / rootcheck / check_rc_policy.c
1 /* @(#) $Id: ./src/rootcheck/check_rc_policy.c, 2011/09/08 dcid Exp $
2  */
3
4 /* Copyright (C) 2009 Trend Micro Inc.
5  * All right reserved.
6  *
7  * This program is a free software; you can redistribute it
8  * and/or modify it under the terms of the GNU General Public
9  * License (version 2) as published by the FSF - Free Software
10  * Foundation
11  */
12
13
14 #include "shared.h"
15 #include "rootcheck.h"
16
17
18
19 /* check_rc_unixaudit:
20  * Read the file pointer specified
21  * and check if the configured file is there
22  */
23 void check_rc_unixaudit(FILE *fp, void *p_list)
24 {
25     debug1("%s: DEBUG: Starting on check_rc_unixaudit", ARGV0);
26
27     rkcl_get_entry(fp, "System Audit:", p_list);
28
29 }
30
31
32
33 /* check_rc_winaudit:
34  * Read the file pointer specified (winpolicy)
35  * and check if the configured file is there
36  */
37 void check_rc_winaudit(FILE *fp, void *p_list)
38 {
39     debug1("%s: DEBUG: Starting on check_rc_winaudit", ARGV0);
40
41     rkcl_get_entry(fp, "Windows Audit:", p_list);
42
43 }
44
45 /* check_rc_winmalware:
46  * Read the file pointer specified (winpolicy)
47  * and check if the configured file is there
48  */
49 void check_rc_winmalware(FILE *fp, void *p_list)
50 {
51     debug1("%s: DEBUG: Starting on check_rc_winmalware", ARGV0);
52
53     rkcl_get_entry(fp, "Windows Malware:", p_list);
54
55 }
56
57 /* check_rc_winapps:
58  * Read the file pointer specified (winpolicy)
59  * and check if the configured file is there
60  */
61 void check_rc_winapps(FILE *fp, void *p_list)
62 {
63     debug1("%s: DEBUG: Starting on check_rc_winapps", ARGV0);
64
65     rkcl_get_entry(fp, "Application Found:", p_list);
66 }
67
68
69
70 /* EOF */