GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / arm-brcm-linux-uclibcgnueabi / sysroot / usr / include / linux / netfilter / xt_string.h
blob235347c02eab523e0d10b7da92027e56685f460c
1 #ifndef _XT_STRING_H
2 #define _XT_STRING_H
4 #include <linux/types.h>
6 #define XT_STRING_MAX_PATTERN_SIZE 128
7 #define XT_STRING_MAX_ALGO_NAME_SIZE 16
9 enum {
10 XT_STRING_FLAG_INVERT = 0x01,
11 XT_STRING_FLAG_IGNORECASE = 0x02
14 struct xt_string_info {
15 __u16 from_offset;
16 __u16 to_offset;
17 char algo[XT_STRING_MAX_ALGO_NAME_SIZE];
18 char pattern[XT_STRING_MAX_PATTERN_SIZE];
19 __u8 patlen;
20 union {
21 struct {
22 __u8 invert;
23 } v0;
25 struct {
26 __u8 flags;
27 } v1;
28 } u;
30 /* Used internally by the kernel */
31 struct ts_config __attribute__((aligned(8))) *config;
34 #endif /*_XT_STRING_H*/