mirror of https://github.com/OISF/suricata
support for http_client_body keyword
parent
74dfbc0c49
commit
97d49d8f5e
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,21 @@
|
||||
/**
|
||||
* 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__ */
|
Loading…
Reference in New Issue