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.
16 lines
351 B
C
16 lines
351 B
C
#ifndef __APP_LAYER_DETECT_PROTO_H__
|
|
#define __APP_LAYER_DETECT_PROTO_H__
|
|
|
|
#include "stream.h"
|
|
|
|
int AppLayerHandleMsg(StreamMsg *smsg, char);
|
|
void *AppLayerDetectProtoThread(void *td);
|
|
|
|
void AppLayerDetectProtoThreadInit(void);
|
|
|
|
void AppLayerDetectProtoThreadSpawn(void);
|
|
void AlpDetectRegisterTests(void);
|
|
|
|
#endif /* __APP_LAYER_DETECT_PROTO_H__ */
|
|
|