diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2009-06-12 20:55:44 +0200 |
---|---|---|
committer | Jan Engelhardt <jengelh@medozas.de> | 2009-06-26 21:13:09 +0200 |
commit | c5e85736c207f211d82d2878a5781f512327dfce (patch) | |
tree | 38e324d6ae9697bf3bba4c9110308a2e9e42b0bf /extensions/libxt_physdev.c | |
parent | cc4344042e8c0bb6eef877975588321aa152660d (diff) |
extensions: collapse registration structures
There are no different code paths between IPV4 and IPV6, so
data can be consolidated here.
text data bss dec hex filename
243757 12212 2576 258545 3f1f1 ip6tables-static[before.i586]
243613 9428 2576 255617 3e681 ip6tables-static[after.i586]
-144 -2784
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'extensions/libxt_physdev.c')
-rw-r--r-- | extensions/libxt_physdev.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/extensions/libxt_physdev.c b/extensions/libxt_physdev.c index 5522a325..74d311da 100644 --- a/extensions/libxt_physdev.c +++ b/extensions/libxt_physdev.c @@ -161,21 +161,7 @@ static void physdev_save(const void *ip, const struct xt_entry_match *match) } static struct xtables_match physdev_match = { - .family = NFPROTO_IPV4, - .name = "physdev", - .version = XTABLES_VERSION, - .size = XT_ALIGN(sizeof(struct xt_physdev_info)), - .userspacesize = XT_ALIGN(sizeof(struct xt_physdev_info)), - .help = physdev_help, - .parse = physdev_parse, - .final_check = physdev_check, - .print = physdev_print, - .save = physdev_save, - .extra_opts = physdev_opts, -}; - -static struct xtables_match physdev_match6 = { - .family = NFPROTO_IPV6, + .family = NFPROTO_UNSPEC, .name = "physdev", .version = XTABLES_VERSION, .size = XT_ALIGN(sizeof(struct xt_physdev_info)), @@ -191,5 +177,4 @@ static struct xtables_match physdev_match6 = { void _init(void) { xtables_register_match(&physdev_match); - xtables_register_match(&physdev_match6); } |