mirror of https://github.com/v2ray/v2ray-core
release connection after all data read in freedom
parent
66bb7879e0
commit
956b47f6ae
|
@ -2,7 +2,6 @@ package freedom
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
"sync"
|
|
||||||
|
|
||||||
"github.com/v2ray/v2ray-core/app"
|
"github.com/v2ray/v2ray-core/app"
|
||||||
"github.com/v2ray/v2ray-core/app/dns"
|
"github.com/v2ray/v2ray-core/app/dns"
|
||||||
|
@ -95,9 +94,6 @@ func (this *FreedomConnection) Dispatch(destination v2net.Destination, payload *
|
||||||
|
|
||||||
input := ray.OutboundInput()
|
input := ray.OutboundInput()
|
||||||
output := ray.OutboundOutput()
|
output := ray.OutboundOutput()
|
||||||
var readMutex, writeMutex sync.Mutex
|
|
||||||
readMutex.Lock()
|
|
||||||
writeMutex.Lock()
|
|
||||||
|
|
||||||
if !payload.IsEmpty() {
|
if !payload.IsEmpty() {
|
||||||
conn.Write(payload.Value)
|
conn.Write(payload.Value)
|
||||||
|
@ -108,12 +104,11 @@ func (this *FreedomConnection) Dispatch(destination v2net.Destination, payload *
|
||||||
defer v2writer.Release()
|
defer v2writer.Release()
|
||||||
|
|
||||||
v2io.Pipe(input, v2writer)
|
v2io.Pipe(input, v2writer)
|
||||||
writeMutex.Unlock()
|
if tcpConn, ok := conn.(*tcp.RawConnection); ok {
|
||||||
|
tcpConn.CloseWrite()
|
||||||
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
go func() {
|
|
||||||
defer readMutex.Unlock()
|
|
||||||
|
|
||||||
var reader io.Reader = conn
|
var reader io.Reader = conn
|
||||||
|
|
||||||
timeout := this.timeout
|
timeout := this.timeout
|
||||||
|
@ -125,17 +120,9 @@ func (this *FreedomConnection) Dispatch(destination v2net.Destination, payload *
|
||||||
}
|
}
|
||||||
|
|
||||||
v2reader := v2io.NewAdaptiveReader(reader)
|
v2reader := v2io.NewAdaptiveReader(reader)
|
||||||
defer v2reader.Release()
|
|
||||||
|
|
||||||
v2io.Pipe(v2reader, output)
|
v2io.Pipe(v2reader, output)
|
||||||
|
v2reader.Release()
|
||||||
ray.OutboundOutput().Close()
|
ray.OutboundOutput().Close()
|
||||||
}()
|
|
||||||
|
|
||||||
writeMutex.Lock()
|
|
||||||
if tcpConn, ok := conn.(*tcp.RawConnection); ok {
|
|
||||||
tcpConn.CloseWrite()
|
|
||||||
}
|
|
||||||
readMutex.Lock()
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue