Remove 4in6 cast

This commit is contained in:
世界 2022-09-25 18:44:34 +08:00
parent 80ee994727
commit 6bad0c2380
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 12 additions and 15 deletions

View file

@ -383,7 +383,8 @@ func (w *systemPacketWriter4) WritePacket(buffer *buf.Buffer, destination M.Sock
ipHdr := clashtcpip.IPv4Packet(newPacket.Bytes())
ipHdr.SetTotalLength(uint16(newPacket.Len()))
ipHdr.SetDestinationIP(ipHdr.SourceIP())
ipHdr.SetSourceIP(destination.Unwrap().Addr)
destination.CheckBadAddr()
ipHdr.SetSourceIP(destination.Addr)
udpHdr := clashtcpip.UDPPacket(ipHdr.Payload())
udpHdr.SetDestinationPort(udpHdr.SourcePort())
udpHdr.SetSourcePort(destination.Port)