From: Pablo Neira Ayuso Date: Thu, 10 Oct 2013 21:21:26 +0000 (+0200) Subject: netfilter: nf_tables: convert built-in tables/chains to chain types X-Git-Tag: v3.13-rc1~105^2~186^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9370761c56b66aa5c65e069a7b010111a025018d;p=pandora-kernel.git netfilter: nf_tables: convert built-in tables/chains to chain types This patch converts built-in tables/chains to chain types that allows you to deploy customized table and chain configurations from userspace. After this patch, you have to specify the chain type when creating a new chain: add chain ip filter output { type filter hook input priority 0; } ^^^^ ------ The existing chain types after this patch are: filter, route and nat. Note that tables are just containers of chains with no specific semantics, which is a significant change with regards to iptables. Signed-off-by: Pablo Neira Ayuso --- Reading git-diff-tree failed