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.
17 lines
341 B
C
17 lines
341 B
C
#ifndef __APP_LAYER_H__
|
|
#define __APP_LAYER_H__
|
|
|
|
#include "flow.h"
|
|
#include "decode.h"
|
|
|
|
#include "app-layer-protos.h"
|
|
#include "app-layer-parser.h"
|
|
#include "stream.h"
|
|
|
|
uint16_t AppLayerGetProtoFromPacket(Packet *);
|
|
void *AppLayerGetProtoStateFromPacket(Packet *);
|
|
void *AppLayerGetProtoStateFromFlow(Flow *);
|
|
|
|
#endif /* __APP_LAYER_H__ */
|
|
|