4 #include <linux/types.h>
6 #define XT_STRING_MAX_PATTERN_SIZE 128
7 #define XT_STRING_MAX_ALGO_NAME_SIZE 16
10 XT_STRING_FLAG_INVERT
= 0x01,
11 XT_STRING_FLAG_IGNORECASE
= 0x02
14 struct xt_string_info
{
17 char algo
[XT_STRING_MAX_ALGO_NAME_SIZE
];
18 char pattern
[XT_STRING_MAX_PATTERN_SIZE
];
30 /* Used internally by the kernel */
31 struct ts_config
__attribute__((aligned(8))) *config
;
34 #endif /*_XT_STRING_H*/