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.
15 lines
420 B
C
15 lines
420 B
C
#ifndef __DETECT_HTTP_METHOD_H__
|
|
#define __DETECT_HTTP_METHOD_H__
|
|
|
|
typedef struct DetectHttpMethodData_ {
|
|
uint8_t *content; /**< Raw HTTP method content to match */
|
|
size_t content_len; /**< Raw HTTP method content length */
|
|
int method; /**< Numeric HTTP method to match */
|
|
} DetectHttpMethodData;
|
|
|
|
/* prototypes */
|
|
void DetectHttpMethodRegister(void);
|
|
|
|
#endif /* __DETECT_HTTP_METHOD_H__ */
|
|
|