Files
xtables-addons/extensions/xt_condition.h
Jan Engelhardt 24dad368dd condition: use new structure type
Use __u8 for the invert flag instead of int. Reduce CONDITION_NAME_LEN
from 32 to 31 so that the entire structure can fit into a cacheline.
2008-04-08 11:58:34 +02:00

14 lines
194 B
C

#ifndef _XT_CONDITION_H
#define _XT_CONDITION_H
enum {
CONDITION_NAME_LEN = 31,
};
struct xt_condition_mtinfo {
char name[CONDITION_NAME_LEN];
__u8 invert;
};
#endif /* _XT_CONDITION_H */