mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
using io.ReadFull in uot's ReadFrom
This commit is contained in:
parent
57f342a847
commit
be9fcd1e50
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ func (c *Conn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
|
||||||
err = E.Cause(io.ErrShortBuffer, "UoT read")
|
err = E.Cause(io.ErrShortBuffer, "UoT read")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
n, err = c.Conn.Read(p[:length])
|
n, err = io.ReadFull(c.Conn, p[:length])
|
||||||
if err == nil {
|
if err == nil {
|
||||||
addr = destination.UDPAddr()
|
addr = destination.UDPAddr()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue