优化代码

This commit is contained in:
GoEdgeLab
2023-01-02 10:44:10 +08:00
parent d52c1620a2
commit 20fc79a8ae

View File

@@ -119,7 +119,7 @@ func (this *ClientConn) Read(b []byte) (n int, err error) {
// 关闭连接
if err == io.EOF {
_ = this.rawConn.Close()
_ = this.Close()
}
return
@@ -167,7 +167,7 @@ func (this *ClientConn) Write(b []byte) (n int, err error) {
_ = conn.SetLinger(0)
}
_ = this.rawConn.Close()
_ = this.Close()
}
return