new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / rootcheck / check_rc_policy.c
1 /* Copyright (C) 2009 Trend Micro Inc.
2  * All right reserved.
3  *
4  * This program is a free software; you can redistribute it
5  * and/or modify it under the terms of the GNU General Public
6  * License (version 2) as published by the FSF - Free Software
7  * Foundation
8  */
9
10 #include "shared.h"
11 #include "rootcheck.h"
12
13
14 /* Read the file pointer specified
15  * and check if the configured file is there
16  */
17 void check_rc_unixaudit(FILE *fp, OSList *p_list)
18 {
19     debug1("%s: DEBUG: Starting on check_rc_unixaudit", ARGV0);
20     rkcl_get_entry(fp, "System Audit:", p_list);
21 }
22
23 /* Read the file pointer specified
24  * and check if the configured file is there
25  */
26 void check_rc_winaudit(FILE *fp, OSList *p_list)
27 {
28     debug1("%s: DEBUG: Starting on check_rc_winaudit", ARGV0);
29     rkcl_get_entry(fp, "Windows Audit:", p_list);
30 }
31
32 /* Read the file pointer specified
33  * and check if the configured file is there
34  */
35 void check_rc_winmalware(FILE *fp, OSList *p_list)
36 {
37     debug1("%s: DEBUG: Starting on check_rc_winmalware", ARGV0);
38     rkcl_get_entry(fp, "Windows Malware:", p_list);
39 }
40
41 /* Read the file pointer specified
42  * and check if the configured file is there
43  */
44 void check_rc_winapps(FILE *fp, OSList *p_list)
45 {
46     debug1("%s: DEBUG: Starting on check_rc_winapps", ARGV0);
47     rkcl_get_entry(fp, "Application Found:", p_list);
48 }
49