mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
using io.ReadFull in uot's ReadFrom
This commit is contained in:
parent
57f342a847
commit
494f88c9b8
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")
|
||||
return
|
||||
}
|
||||
n, err = c.Conn.Read(p[:length])
|
||||
n, err = io.ReadFull(c.Conn, p[:length])
|
||||
if err == nil {
|
||||
addr = destination.UDPAddr()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue