Imported Upstream version 2.7
[ossec-hids.git] / src / analysisd / alerts / log.h
1 /* @(#) $Id: ./src/analysisd/alerts/log.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 /* Basic logging operations */
14
15 #ifndef __LOG_H
16 #define __LOG_H
17
18 #include "eventinfo.h"
19
20 #define FWDROP "drop"
21 #define FWALLOW "accept"
22
23 void OS_LogOutput(Eventinfo *lf);
24 void OS_Log(Eventinfo *lf);
25 void OS_Store(Eventinfo *lf);
26 int FW_Log(Eventinfo *lf);
27
28 #endif
29
30