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.
12 lines
334 B
C
12 lines
334 B
C
15 years ago
|
#ifndef __DETECT_ENGINE_ALERT_H__
|
||
|
#define __DETECT_ENGINE_ALERT_H__
|
||
|
#include "suricata-common.h"
|
||
|
#include "decode.h"
|
||
|
#include "detect.h"
|
||
|
|
||
|
int PacketAlertAppend(DetectEngineThreadCtx *, Signature *, Packet *);
|
||
|
int PacketAlertCheck(Packet *, uint32_t);
|
||
|
int PacketAlertRemove(Packet *, uint16_t);
|
||
|
|
||
|
#endif /* __DETECT_ENGINE_ALERT_H__ */
|