aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-10-13 16:37:45 +0200
committerJan Engelhardt <jengelh@medozas.de>2010-10-13 18:00:50 +0200
commit75f0a0fd787bfa3ea1a916ca632a5b9e0007cbb7 (patch)
tree1928cb3401ead89d561e04d4d317422a0ed80283 /include/linux/netfilter
parent243bf6e29eef642de0ff62f1ebf58bc2396d6d6e (diff)
downloadkernel_samsung_smdk4412-75f0a0fd787bfa3ea1a916ca632a5b9e0007cbb7.zip
kernel_samsung_smdk4412-75f0a0fd787bfa3ea1a916ca632a5b9e0007cbb7.tar.gz
kernel_samsung_smdk4412-75f0a0fd787bfa3ea1a916ca632a5b9e0007cbb7.tar.bz2
netfilter: xtables: unify {ip,ip6,arp}t_error_target
Unification of struct *_error_target was forgotten in v2.6.16-1689-g1e30a01. Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'include/linux/netfilter')
-rw-r--r--include/linux/netfilter/x_tables.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h
index 24e5d01..742bec0 100644
--- a/include/linux/netfilter/x_tables.h
+++ b/include/linux/netfilter/x_tables.h
@@ -66,6 +66,11 @@ struct xt_standard_target {
int verdict;
};
+struct xt_error_target {
+ struct xt_entry_target target;
+ char errorname[XT_FUNCTION_MAXNAMELEN];
+};
+
/* The argument to IPT_SO_GET_REVISION_*. Returns highest revision
* kernel supports, if >= revision. */
struct xt_get_revision {