1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-30 05:56:54 -05:00

small fixes

This commit is contained in:
Darien Raymond 2016-11-19 00:37:11 +01:00
parent 292176c57f
commit 65a49e7fa0
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
2 changed files with 1 additions and 2 deletions

View File

@ -92,7 +92,7 @@ func (this *ProxyConnection) Read(b []byte) (int, error) {
func (this *ProxyConnection) Write(b []byte) (int, error) {
if this.closed {
return 0, errors.New("Proxy|Outbound: Writing into closed connection.")
return 0, io.ErrClosedPipe
}
return this.writer.Write(b)
}

View File

@ -157,7 +157,6 @@ func (this *VMessOutboundHandler) handleResponse(session *encoding.ClientSession
}
bodyReader.Release()
return
}