mirror of https://github.com/Dreamacro/clash.git
Improve: avoid bufconn twice (#1650)
This commit is contained in:
parent
70c8605cca
commit
9aeb4c8cfe
|
@ -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}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue