Imported Upstream version 2.5.1
[ossec-hids.git] / src / analysisd / active-response.h
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 #ifndef _AR__H
14 #define _AR__H
15
16 #include "config/config.h"
17 #include "config/active-response.h"
18 #include "list_op.h"
19
20
21 /** void AR_Init()
22  * Initializing active response.
23   */
24 void AR_Init();
25
26 /** int AR_ReadConfig(int test_config, char *cfgfile)
27  * Reads active response configuration and write them
28  * to the appropriate lists.
29  */
30 int AR_ReadConfig(int test_config, char *cfgfile);
31      
32
33 /* Active response commands */
34 OSList *ar_commands;
35
36 /* Active response information */
37 OSList *active_responses;
38
39
40 #endif