using io.ReadFull in uot's ReadFrom

This commit is contained in:
wwqgtxx 2023-09-22 00:04:40 +08:00
parent 57f342a847
commit 494f88c9b8

View file

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