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