still need this goroutine

pull/27/head
V2Ray 2015-09-22 18:43:12 +02:00
parent f30841019d
commit 3f0f8f005d
1 changed files with 9 additions and 6 deletions

View File

@ -47,12 +47,15 @@ func (vconn *FreedomConnection) Start(ray core.OutboundRay) error {
go dumpInput(conn, input, writeFinish)
go dumpOutput(conn, output, readFinish)
<-writeFinish
if tcpConn, ok := conn.(*net.TCPConn); ok {
tcpConn.CloseWrite()
}
<-readFinish
conn.Close()
go func() {
<-writeFinish
if tcpConn, ok := conn.(*net.TCPConn); ok {
tcpConn.CloseWrite()
}
<-readFinish
conn.Close()
}()
return nil
}