mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 11:44:01 +08:00
netfilter: nf_flow_table: fix checksum when handling DNAT
Add a missing call to csum_replace4 like on SNAT. Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
b718121685
commit
f4b7ac5ec3
@ -111,6 +111,7 @@ static int nf_flow_dnat_ip(const struct flow_offload *flow, struct sk_buff *skb,
|
|||||||
default:
|
default:
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
csum_replace4(&iph->check, addr, new_addr);
|
||||||
|
|
||||||
return nf_flow_nat_ip_l4proto(skb, iph, thoff, addr, new_addr);
|
return nf_flow_nat_ip_l4proto(skb, iph, thoff, addr, new_addr);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user