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.
suricata/src/detect-http-method.h

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__ */