优化代码

This commit is contained in:
刘祥超
2023-01-02 10:44:10 +08:00
parent b4a4b2e9b1
commit 2c3c32af5b

View File

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