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.
25 lines
491 B
C
25 lines
491 B
C
16 years ago
|
/*
|
||
|
* \file: app-layer-htp.h
|
||
|
* \author Gurvinder Singh <gurvindersinghdahiya@gmail.com>
|
||
|
*
|
||
|
* Created on November 14, 2009, 12:48 AM
|
||
|
*/
|
||
|
|
||
|
#ifndef _APP_LAYER_HTP_H
|
||
|
#define _APP_LAYER_HTP_H
|
||
|
|
||
|
#include <htp/htp.h>
|
||
|
|
||
|
typedef struct HtpState_ {
|
||
|
|
||
|
htp_connp_t *connp; /**< Connection parser structure for each connection */
|
||
|
|
||
|
} HtpState;
|
||
|
|
||
|
htp_cfg_t *cfg; /**< Config structure for HTP library */
|
||
|
|
||
|
void RegisterHTPParsers(void);
|
||
|
void HTPParserRegisterTests(void);
|
||
|
#endif /* _APP_LAYER_HTP_H */
|
||
|
|