Commit cfd6e3d7 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Patrick McHardy

netfilter: netns nat: PPTP NAT in netns

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent 9174c153
...@@ -40,6 +40,7 @@ MODULE_ALIAS("ip_nat_pptp"); ...@@ -40,6 +40,7 @@ MODULE_ALIAS("ip_nat_pptp");
static void pptp_nat_expected(struct nf_conn *ct, static void pptp_nat_expected(struct nf_conn *ct,
struct nf_conntrack_expect *exp) struct nf_conntrack_expect *exp)
{ {
struct net *net = nf_ct_net(ct);
const struct nf_conn *master = ct->master; const struct nf_conn *master = ct->master;
struct nf_conntrack_expect *other_exp; struct nf_conntrack_expect *other_exp;
struct nf_conntrack_tuple t; struct nf_conntrack_tuple t;
...@@ -73,7 +74,7 @@ static void pptp_nat_expected(struct nf_conn *ct, ...@@ -73,7 +74,7 @@ static void pptp_nat_expected(struct nf_conn *ct,
pr_debug("trying to unexpect other dir: "); pr_debug("trying to unexpect other dir: ");
nf_ct_dump_tuple_ip(&t); nf_ct_dump_tuple_ip(&t);
other_exp = nf_ct_expect_find_get(&init_net, &t); other_exp = nf_ct_expect_find_get(net, &t);
if (other_exp) { if (other_exp) {
nf_ct_unexpect_related(other_exp); nf_ct_unexpect_related(other_exp);
nf_ct_expect_put(other_exp); nf_ct_expect_put(other_exp);
......
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