Commit f88e6a8a authored by Jan Engelhardt's avatar Jan Engelhardt

netfilter: xtables: switch table AFs to nfproto

Signed-off-by: default avatarJan Engelhardt <jengelh@medozas.de>
parent 24c232d8
...@@ -57,7 +57,7 @@ static struct xt_table packet_filter = { ...@@ -57,7 +57,7 @@ static struct xt_table packet_filter = {
.name = "filter", .name = "filter",
.valid_hooks = FILTER_VALID_HOOKS, .valid_hooks = FILTER_VALID_HOOKS,
.me = THIS_MODULE, .me = THIS_MODULE,
.af = AF_INET, .af = NFPROTO_IPV4,
}; };
/* The work comes in here from netfilter.c. */ /* The work comes in here from netfilter.c. */
......
...@@ -68,7 +68,7 @@ static struct xt_table packet_mangler = { ...@@ -68,7 +68,7 @@ static struct xt_table packet_mangler = {
.name = "mangle", .name = "mangle",
.valid_hooks = MANGLE_VALID_HOOKS, .valid_hooks = MANGLE_VALID_HOOKS,
.me = THIS_MODULE, .me = THIS_MODULE,
.af = AF_INET, .af = NFPROTO_IPV4,
}; };
/* The work comes in here from netfilter.c. */ /* The work comes in here from netfilter.c. */
......
...@@ -40,7 +40,7 @@ static struct xt_table packet_raw = { ...@@ -40,7 +40,7 @@ static struct xt_table packet_raw = {
.name = "raw", .name = "raw",
.valid_hooks = RAW_VALID_HOOKS, .valid_hooks = RAW_VALID_HOOKS,
.me = THIS_MODULE, .me = THIS_MODULE,
.af = AF_INET, .af = NFPROTO_IPV4,
}; };
/* The work comes in here from netfilter.c. */ /* The work comes in here from netfilter.c. */
......
...@@ -61,7 +61,7 @@ static struct xt_table security_table = { ...@@ -61,7 +61,7 @@ static struct xt_table security_table = {
.name = "security", .name = "security",
.valid_hooks = SECURITY_VALID_HOOKS, .valid_hooks = SECURITY_VALID_HOOKS,
.me = THIS_MODULE, .me = THIS_MODULE,
.af = AF_INET, .af = NFPROTO_IPV4,
}; };
static unsigned int static unsigned int
......
...@@ -62,7 +62,7 @@ static struct xt_table nat_table = { ...@@ -62,7 +62,7 @@ static struct xt_table nat_table = {
.name = "nat", .name = "nat",
.valid_hooks = NAT_VALID_HOOKS, .valid_hooks = NAT_VALID_HOOKS,
.me = THIS_MODULE, .me = THIS_MODULE,
.af = AF_INET, .af = NFPROTO_IPV4,
}; };
/* Source NAT */ /* Source NAT */
......
...@@ -55,7 +55,7 @@ static struct xt_table packet_filter = { ...@@ -55,7 +55,7 @@ static struct xt_table packet_filter = {
.name = "filter", .name = "filter",
.valid_hooks = FILTER_VALID_HOOKS, .valid_hooks = FILTER_VALID_HOOKS,
.me = THIS_MODULE, .me = THIS_MODULE,
.af = AF_INET6, .af = NFPROTO_IPV6,
}; };
/* The work comes in here from netfilter.c. */ /* The work comes in here from netfilter.c. */
......
...@@ -61,7 +61,7 @@ static struct xt_table packet_mangler = { ...@@ -61,7 +61,7 @@ static struct xt_table packet_mangler = {
.name = "mangle", .name = "mangle",
.valid_hooks = MANGLE_VALID_HOOKS, .valid_hooks = MANGLE_VALID_HOOKS,
.me = THIS_MODULE, .me = THIS_MODULE,
.af = AF_INET6, .af = NFPROTO_IPV6,
}; };
/* The work comes in here from netfilter.c. */ /* The work comes in here from netfilter.c. */
......
...@@ -39,7 +39,7 @@ static struct xt_table packet_raw = { ...@@ -39,7 +39,7 @@ static struct xt_table packet_raw = {
.name = "raw", .name = "raw",
.valid_hooks = RAW_VALID_HOOKS, .valid_hooks = RAW_VALID_HOOKS,
.me = THIS_MODULE, .me = THIS_MODULE,
.af = AF_INET6, .af = NFPROTO_IPV6,
}; };
/* The work comes in here from netfilter.c. */ /* The work comes in here from netfilter.c. */
......
...@@ -60,7 +60,7 @@ static struct xt_table security_table = { ...@@ -60,7 +60,7 @@ static struct xt_table security_table = {
.name = "security", .name = "security",
.valid_hooks = SECURITY_VALID_HOOKS, .valid_hooks = SECURITY_VALID_HOOKS,
.me = THIS_MODULE, .me = THIS_MODULE,
.af = AF_INET6, .af = NFPROTO_IPV6,
}; };
static unsigned int static unsigned int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment