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-window.h

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_ {
16 years ago
uint8_t negated; /** negated? 1=True : 0=False */
uint16_t size; /** window size to match */
} DetectWindowData;
/* prototypes */
void DetectWindowRegister (void);
#endif /* __DETECT_WINDOW_H__ */