You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
302 B
19 lines
302 B
17 years ago
|
#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
|