new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / analysisd / active-response.h
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 #ifndef _AR__H
11 #define _AR__H
12
13 #include "config/active-response.h"
14 #include "config/config.h"
15 #include "list_op.h"
16
17 /* Initialize active response */
18 void AR_Init(void);
19
20 /* Read active response configuration and write it
21  * to the appropriate lists.
22  */
23 int AR_ReadConfig(const char *cfgfile);
24
25 /* Active response information */
26 extern OSList *active_responses;
27
28 #endif /* _AR__H */
29