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.
23 lines
523 B
C
23 lines
523 B
C
/**Copyright (c) 2009 Open Information Security Foundation
|
|
*
|
|
* \author Gurvinder Singh <gurvindersinghdahiya@gmail.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef _DETECT_HTTP_COOKIE_H
|
|
#define _DETECT_HTTP_COOKIE_H
|
|
|
|
typedef struct DetectHttpCookieData_ {
|
|
uint8_t *data;
|
|
uint8_t data_len;
|
|
} DetectHttpCookieData;
|
|
|
|
/* prototypes */
|
|
void DetectHttpCookieRegister (void);
|
|
|
|
int DetectHttpCookieDoMatch(DetectEngineThreadCtx *det_ctx, Signature *s,
|
|
SigMatch *sm, Flow *f, uint8_t flags, void *state);
|
|
|
|
#endif /* _DETECT_HTTP_COOKIE_H */
|
|
|