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.
22 lines
520 B
C
22 lines
520 B
C
/**
|
|
* Copyright (c) 2010 Open Information Security Foundation.
|
|
*
|
|
* \author Anoop Saldanha <poonaatsoc@gmail.com>
|
|
*/
|
|
|
|
#ifndef __DETECT_HTTP_CLIENT_BODY_H__
|
|
#define __DETECT_HTTP_CLIENT_BODY_H__
|
|
|
|
#define DETECT_AL_HTTP_CLIENT_BODY_NOCASE 0x01
|
|
#define DETECT_AL_HTTP_CLIENT_BODY_NEGATED 0x02
|
|
|
|
typedef struct DetectHttpClientBodyData_ {
|
|
uint8_t *content;
|
|
uint8_t content_len;
|
|
uint8_t flags;
|
|
} DetectHttpClientBodyData;
|
|
|
|
void DetectHttpClientBodyRegister(void);
|
|
|
|
#endif /* __DETECT_HTTP_CLIENT_BODY_H__ */
|