toolchain: switch kernel 2.4 builds to gcc 4.2.4
[tomato.git] / tools / brcm / K24 / hndtools-mipsel-uclibc-4.1.2 / include / linux / netfilter_ipv4 / ipt_string.h
bloba265f6e44eabc0f54d27a8062b9803d5ff21a2c1
1 #ifndef _IPT_STRING_H
2 #define _IPT_STRING_H
4 #define IPT_STRING_MAX_PATTERN_SIZE 128
5 #define IPT_STRING_MAX_ALGO_NAME_SIZE 16
7 struct ipt_string_info
9 u_int16_t from_offset;
10 u_int16_t to_offset;
11 char algo[IPT_STRING_MAX_ALGO_NAME_SIZE];
12 char pattern[IPT_STRING_MAX_PATTERN_SIZE];
13 u_int8_t patlen;
14 u_int8_t invert;
15 struct ts_config __attribute__((aligned(8))) *config;
18 #endif /*_IPT_STRING_H*/