19 lines
302 B
C
19 lines
302 B
C
#ifndef _IP_CT_FLUSH_H
|
|
#define _IP_CT_FLUSH_H
|
|
|
|
struct search_pattern {
|
|
struct {
|
|
u_int32_t ip;
|
|
u_int32_t mask;
|
|
u_int16_t portlo;
|
|
u_int16_t porthi;
|
|
} src, dst;
|
|
u_int8_t proto;
|
|
u_int32_t count;
|
|
};
|
|
|
|
#define CT_FLUSH_MINOR 243
|
|
#define IOCTL_CT_FLUSH _IOWR('W', 0, struct search_pattern)
|
|
|
|
#endif
|