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