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

@ -65,11 +65,7 @@ type UDPBackWriter struct {
func (w *UDPBackWriter) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
defer buffer.Release()
if w.sourceNetwork == header.IPv4ProtocolNumber && destination.Addr.Is4In6() {
destination = destination.Unwrap()
} else if w.sourceNetwork == header.IPv6ProtocolNumber && destination.Addr.Is4() {
destination = M.SocksaddrFrom(netip.AddrFrom16(destination.Addr.As16()), destination.Port)
}
destination.CheckBadAddr()
route, err := w.stack.FindRoute(
defaultNIC,