blob: 86492d497ffb0b3136e9ebbac4d729560db713f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef HTTP_MESSAGE_ENTRY_H_
#define HTTP_MESSAGE_ENTRY_H_
#include "HTTP_Analyze.h"
#include "HTTP_Message.h"
#ifdef __cplusplus
extern "C" {
#endif
uchar http_findAndDoWithEntity(uchar *mgs_status, http_parser_t* a_http, http_stream* a_http_stream, struct streaminfo *a_tcp, int thread_seq, void *a_packet);
#ifdef __cplusplus
}
#endif
#endif
|