mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
357 B
C
14 lines
357 B
C
/* Copyright (c) 2008 Victor Julien <victor@inliniac.net> */
|
|
|
|
#include "tm-modules.h"
|
|
#ifndef __ALERT_FASTLOG_H__
|
|
#define __ALERT_FASTLOG_H__
|
|
|
|
void TmModuleAlertFastLogRegister (void);
|
|
void TmModuleAlertFastLogIPv4Register (void);
|
|
void TmModuleAlertFastLogIPv6Register (void);
|
|
LogFileCtx *AlertFastLogInitCtx(ConfNode *);
|
|
|
|
#endif /* __ALERT_FASTLOG_H__ */
|
|
|