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.
20 lines
418 B
C
20 lines
418 B
C
#ifndef __DETECT_ISDATAAT_H__
|
|
#define __DETECT_ISDATAAT_H__
|
|
|
|
#define ISDATAAT_RELATIVE 0x01
|
|
#define ISDATAAT_RAWBYTES 0x02
|
|
|
|
#define ISDATAAT_MIN 0
|
|
#define ISDATAAT_MAX 65535
|
|
|
|
typedef struct DetectIsdataatData_ {
|
|
uint16_t dataat; /* data offset to match */
|
|
uint8_t flags; /* isdataat options*/
|
|
} DetectIsdataatData;
|
|
|
|
/* prototypes */
|
|
void DetectIsdataatRegister (void);
|
|
|
|
#endif /* __DETECT_ISDATAAT_H__ */
|
|
|