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.
17 lines
363 B
C
17 lines
363 B
C
#ifndef __DETECT_WINDOW_H__
|
|
#define __DETECT_WINDOW_H__
|
|
|
|
#define MIN_WINDOW_VALUE 0
|
|
#define MAX_WINDOW_VALUE 65535
|
|
|
|
typedef struct DetectWindowData_ {
|
|
uint8_t negated; /** negated? 1=True : 0=False */
|
|
uint32_t size; /** window size to match */
|
|
} DetectWindowData;
|
|
|
|
/* prototypes */
|
|
void DetectWindowRegister (void);
|
|
|
|
#endif /* __DETECT_WINDOW_H__ */
|
|
|