summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2008-07-29 19:04:34 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2008-07-29 19:04:34 +0200
commitce5e35f466c4e1168b7f4b11bf7d9f8e6516e920 (patch)
tree96c4e563f38b1b36f10f684304fdb175c485921b /include
parent72ed4ffedd4ea97faf1e405e90f512f881c59386 (diff)
parent675e30f258952292972a562b71161b6d3cd77313 (diff)
Merge branch 'master' of vishnu.netfilter.org:/data/git/iptables
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter/xt_string.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/include/linux/netfilter/xt_string.h b/include/linux/netfilter/xt_string.h
index bb21dd1a..f1c182fd 100644
--- a/include/linux/netfilter/xt_string.h
+++ b/include/linux/netfilter/xt_string.h
@@ -4,6 +4,11 @@
#define XT_STRING_MAX_PATTERN_SIZE 128
#define XT_STRING_MAX_ALGO_NAME_SIZE 16
+enum {
+ XT_STRING_FLAG_INVERT = 0x01,
+ XT_STRING_FLAG_IGNORECASE = 0x02
+};
+
struct xt_string_info
{
u_int16_t from_offset;
@@ -11,7 +16,15 @@ struct xt_string_info
char algo[XT_STRING_MAX_ALGO_NAME_SIZE];
char pattern[XT_STRING_MAX_PATTERN_SIZE];
u_int8_t patlen;
- u_int8_t invert;
+ union {
+ struct {
+ u_int8_t invert;
+ } v0;
+
+ struct {
+ u_int8_t flags;
+ } v1;
+ } u;
/* Used internally by the kernel */
struct ts_config __attribute__((aligned(8))) *config;