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
482 B
C
21 lines
482 B
C
#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_ {
|
|
uint16_t idx;
|
|
uint8_t cmd;
|
|
} DetectFlowbitsData;
|
|
|
|
/* prototypes */
|
|
void DetectFlowbitsRegister (void);
|
|
|
|
#endif /* __DETECT_FLOWBITS_H__ */
|
|
|