diff --git a/none.go b/none.go index c1f4433..50a7de4 100644 --- a/none.go +++ b/none.go @@ -155,7 +155,11 @@ func (c *nonePacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) { if err != nil { return } - addr = destination.UDPAddr() + if destination.IsFqdn() { + addr = destination + } else { + addr = destination.UDPAddr() + } n = copy(p, buffer.Bytes()) return } diff --git a/shadowaead/protocol.go b/shadowaead/protocol.go index 0e8c712..32f71c0 100644 --- a/shadowaead/protocol.go +++ b/shadowaead/protocol.go @@ -296,7 +296,11 @@ func (c *clientPacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) if err != nil { return } - addr = destination.UDPAddr() + if destination.IsFqdn() { + addr = destination + } else { + addr = destination.UDPAddr() + } n = copy(p, buffer.Bytes()) return } diff --git a/shadowaead_2022/protocol.go b/shadowaead_2022/protocol.go index ca12904..022f932 100644 --- a/shadowaead_2022/protocol.go +++ b/shadowaead_2022/protocol.go @@ -702,7 +702,11 @@ func (c *clientPacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) if err != nil { return } - addr = destination.UDPAddr() + if destination.IsFqdn() { + addr = destination + } else { + addr = destination.UDPAddr() + } n = copy(p, buffer.Bytes()) return } diff --git a/shadowstream/protocol.go b/shadowstream/protocol.go index 10e26d7..0238690 100644 --- a/shadowstream/protocol.go +++ b/shadowstream/protocol.go @@ -294,7 +294,11 @@ func (c *clientPacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) if err != nil { return } - addr = destination.UDPAddr() + if destination.IsFqdn() { + addr = destination + } else { + addr = destination.UDPAddr() + } n = copy(p, buffer.Bytes()) return }