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.
21 lines
484 B
C
21 lines
484 B
C
16 years ago
|
#ifndef __DETECT_FLOWBITS_H__
|
||
|
#define __DETECT_FLOWBITS_H__
|
||
|
|
||
|
#define DETECT_FLOWBITS_CMD_ISSET 0
|
||
|
#define DETECT_FLOWBITS_CMD_ISNOTSET 1
|
||
|
#define DETECT_FLOWBITS_CMD_SET 2
|
||
|
#define DETECT_FLOWBITS_CMD_UNSET 3
|
||
|
#define DETECT_FLOWBITS_CMD_TOGGLE 4
|
||
|
#define DETECT_FLOWBITS_CMD_NOALERT 5
|
||
|
|
||
|
typedef struct _DetectFlowbitsData {
|
||
|
u_int16_t idx;
|
||
|
u_int8_t cmd;
|
||
|
} DetectFlowbitsData;
|
||
|
|
||
|
/* prototypes */
|
||
|
void DetectFlowbitsRegister (void);
|
||
|
|
||
|
#endif /* __DETECT_FLOWBITS_H__ */
|
||
|
|