1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 09:50:43 +00:00

close connection without error

This commit is contained in:
Darien Raymond 2018-11-27 10:56:07 +01:00
parent fe0f32e0f1
commit 90ab42b1cb
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -182,9 +182,8 @@ func (c *interConn) Write(b []byte) (int, error) {
}
func (c *interConn) Close() error {
c.stream.CancelRead(1)
c.stream.CancelWrite(1)
return nil
c.stream.CancelRead(0x00)
return c.stream.Close()
}
func (c *interConn) LocalAddr() net.Addr {