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
277 B
C
17 lines
277 B
C
16 years ago
|
#ifndef __DETECT_ID_H__
|
||
|
#define __DETECT_ID_H__
|
||
|
|
||
|
|
||
|
#define DETECT_IPID_MIN 0
|
||
|
#define DETECT_IPID_MAX 65536
|
||
|
|
||
|
typedef struct DetectIdData_ {
|
||
|
uint16_t id; /** ip->id to match */
|
||
|
} DetectIdData;
|
||
|
|
||
|
/* prototypes */
|
||
|
void DetectIdRegister (void);
|
||
|
|
||
|
#endif /* __DETECT_ID_H__ */
|
||
|
|