Improve: avoid bufconn twice (#1650)

This commit is contained in:
gVisor bot 2021-09-28 23:15:53 +08:00
parent 0be9c2ae4a
commit 24b388f4dd

View File

@ -11,6 +11,9 @@ type BufferedConn struct {
}
func NewBufferedConn(c net.Conn) *BufferedConn {
if bc, ok := c.(*BufferedConn); ok {
return bc
}
return &BufferedConn{bufio.NewReader(c), c}
}