aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2008-10-08 05:35:15 -0400
committerPatrick McHardy <kaber@trash.net>2008-10-08 05:35:15 -0400
commit043ef46c7690bfdbd5b012e15812a14a19ca5604 (patch)
tree5758fd3b01b7fd338c7ae39496dc7cdf5a393dd9 /include/linux
parent2d06d4a5cc107046508d860a0b47dbc43b829b79 (diff)
netfilter: move Ebtables to use Xtables
Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/netfilter_bridge/ebtables.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/netfilter_bridge/ebtables.h b/include/linux/netfilter_bridge/ebtables.h
index f20a57da7a25..d3f9243b9d9b 100644
--- a/include/linux/netfilter_bridge/ebtables.h
+++ b/include/linux/netfilter_bridge/ebtables.h
@@ -124,7 +124,7 @@ struct ebt_entry_match
124{ 124{
125 union { 125 union {
126 char name[EBT_FUNCTION_MAXNAMELEN]; 126 char name[EBT_FUNCTION_MAXNAMELEN];
127 struct ebt_match *match; 127 struct xt_match *match;
128 } u; 128 } u;
129 /* size of data */ 129 /* size of data */
130 unsigned int match_size; 130 unsigned int match_size;
@@ -135,7 +135,7 @@ struct ebt_entry_watcher
135{ 135{
136 union { 136 union {
137 char name[EBT_FUNCTION_MAXNAMELEN]; 137 char name[EBT_FUNCTION_MAXNAMELEN];
138 struct ebt_watcher *watcher; 138 struct xt_target *watcher;
139 } u; 139 } u;
140 /* size of data */ 140 /* size of data */
141 unsigned int watcher_size; 141 unsigned int watcher_size;
@@ -146,7 +146,7 @@ struct ebt_entry_target
146{ 146{
147 union { 147 union {
148 char name[EBT_FUNCTION_MAXNAMELEN]; 148 char name[EBT_FUNCTION_MAXNAMELEN];
149 struct ebt_target *target; 149 struct xt_target *target;
150 } u; 150 } u;
151 /* size of data */ 151 /* size of data */
152 unsigned int target_size; 152 unsigned int target_size;