Imported Upstream version 2.5.1
[ossec-hids.git] / src / rootcheck / check_rc_policy.c
1 /* @(#) $Id$ */
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 #include "shared.h"
14 #include "rootcheck.h"
15
16
17  
18 /* check_rc_unixaudit:
19  * Read the file pointer specified
20  * and check if the configured file is there
21  */
22 void check_rc_unixaudit(FILE *fp, void *p_list)
23 {
24     debug1("%s: DEBUG: Starting on check_rc_unixaudit", ARGV0);
25      
26     rkcl_get_entry(fp, "System Audit:", p_list);
27     
28 }
29
30
31
32 /* check_rc_winaudit:
33  * Read the file pointer specified (winpolicy)
34  * and check if the configured file is there
35  */
36 void check_rc_winaudit(FILE *fp, void *p_list)
37 {
38     debug1("%s: DEBUG: Starting on check_rc_winaudit", ARGV0);
39      
40     rkcl_get_entry(fp, "Windows Audit:", p_list);
41     
42 }
43
44 /* check_rc_winmalware:
45  * Read the file pointer specified (winpolicy)
46  * and check if the configured file is there
47  */
48 void check_rc_winmalware(FILE *fp, void *p_list)
49 {
50     debug1("%s: DEBUG: Starting on check_rc_winmalware", ARGV0);
51      
52     rkcl_get_entry(fp, "Windows Malware:", p_list);
53     
54 }
55
56 /* check_rc_winapps:
57  * Read the file pointer specified (winpolicy)
58  * and check if the configured file is there
59  */
60 void check_rc_winapps(FILE *fp, void *p_list)
61 {
62     debug1("%s: DEBUG: Starting on check_rc_winapps", ARGV0);
63      
64     rkcl_get_entry(fp, "Application Found:", p_list);
65 }
66
67
68
69 /* EOF */