Imported Upstream version 2.3
[ossec-hids.git] / src / analysisd / alerts / log.h
1 /* @(#) $Id: log.h,v 1.8 2009/06/24 17:06:22 dcid Exp $ */
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 3) 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_Log(Eventinfo *lf);
23 void OS_Store(Eventinfo *lf);
24 int FW_Log(Eventinfo *lf);
25
26 #endif
27
28