Fix ReadFrom result

This commit is contained in:
世界 2023-04-12 20:31:10 +08:00
parent 5c830455eb
commit 1a7c32b4e2
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 20 additions and 4 deletions

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}