diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-11-12 12:17:23 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-11-12 12:18:31 +0100 |
commit | fca6f60a44a75f76d2c1183f06466228b01b9686 (patch) | |
tree | 38640ada6dc2e49c08d06aeda318d933e944134f /ip6t_SNPTV6.c | |
parent | 1f198582c6f73bd22a27e8bc0c3930fcd32702ba (diff) | |
download | NPTv6-fca6f60a44a75f76d2c1183f06466228b01b9686.tar NPTv6-fca6f60a44a75f76d2c1183f06466228b01b9686.zip |
Allow using [SD]NPTV6 rules in INPUT/OUTOUT chains
Diffstat (limited to 'ip6t_SNPTV6.c')
-rw-r--r-- | ip6t_SNPTV6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ip6t_SNPTV6.c b/ip6t_SNPTV6.c index 97f8e04..378ad8a 100644 --- a/ip6t_SNPTV6.c +++ b/ip6t_SNPTV6.c @@ -67,7 +67,7 @@ static struct xt_target snptv6_tg6_reg __read_mostly = { .checkentry = snptv6_tg6_check, .targetsize = sizeof(struct ip6t_nptv6_info), .table = "mangle", - .hooks = (1 << NF_INET_POST_ROUTING), + .hooks = (1 << NF_INET_POST_ROUTING) | (1 << NF_INET_LOCAL_IN), .me = THIS_MODULE, }; |