xt_find_table
struct xt_table *xt_find_table(struct net *net, u8 af, const char *name);
struct xt_table *table = xt_find_table(net, NFPROTO_ARP, name);
struct xt_table *table = xt_find_table(net, NFPROTO_ARP, name);
struct xt_table *table = xt_find_table(net, NFPROTO_IPV4, name);
struct xt_table *table = xt_find_table(net, NFPROTO_IPV4, name);
table = xt_find_table(net, NFPROTO_IPV4, "nat");
struct xt_table *table = xt_find_table(net, NFPROTO_IPV6, name);
struct xt_table *table = xt_find_table(net, NFPROTO_IPV6, name);
table = xt_find_table(net, NFPROTO_IPV6, "nat");
EXPORT_SYMBOL(xt_find_table);