[NETFILTER]: nf_conntrack: attach conntrack to TCP RST generated by ip6t_REJECT

TCP RSTs generated by the REJECT target should be associated with the
conntrack of the original TCP packet. Since the conntrack entry is
usually not is the hash tables, it must be manually attached.

Signed-off-by: Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Yasuyuki Kozakai and committed by David S. Miller 08857fa7 7d3cdc6b

+2
+2
net/ipv6/netfilter/ip6t_REJECT.c
··· 160 160 csum_partial((char *)tcph, 161 161 sizeof(struct tcphdr), 0)); 162 162 163 + nf_ct_attach(nskb, oldskb); 164 + 163 165 NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, nskb, NULL, nskb->dst->dev, 164 166 dst_output); 165 167 }