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.
25 lines
415 B
C
25 lines
415 B
C
16 years ago
|
/*
|
||
|
* File: detect-stream_size.h
|
||
|
* \author Gurvinder Singh <gurvindersinghdahiya@gmail.com>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _DETECT_TTL_H
|
||
|
#define _DETECT_TTL_H
|
||
|
|
||
|
#define DETECT_TTL_LT 0
|
||
|
#define DETECT_TTL_EQ 1
|
||
|
#define DETECT_TTL_GT 2
|
||
|
#define DETECT_TTL_RA 3
|
||
|
|
||
|
typedef struct DetectTtlData_ {
|
||
|
uint8_t ttl1;
|
||
|
uint8_t ttl2;
|
||
|
uint8_t mode;
|
||
|
}DetectTtlData;
|
||
|
|
||
|
void DetectTtlRegister(void);
|
||
|
|
||
|
#endif /* _DETECT_TTL_H */
|
||
|
|