mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
package mocks
|
|
|
|
import (
|
|
"io"
|
|
"sync"
|
|
|
|
"github.com/v2ray/v2ray-core/app"
|
|
"github.com/v2ray/v2ray-core/common/alloc"
|
|
v2io "github.com/v2ray/v2ray-core/common/io"
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
"github.com/v2ray/v2ray-core/proxy"
|
|
"github.com/v2ray/v2ray-core/transport/ray"
|
|
)
|
|
|
|
type OutboundConnectionHandler struct {
|
|
Destination v2net.Destination
|
|
ConnInput io.Reader
|
|
ConnOutput io.Writer
|
|
}
|
|
|
|
func (this *OutboundConnectionHandler) Dispatch(destination v2net.Destination, payload *alloc.Buffer, ray ray.OutboundRay) error {
|
|
input := ray.OutboundInput()
|
|
output := ray.OutboundOutput()
|
|
|
|
this.Destination = destination
|
|
this.ConnOutput.Write(payload.Value)
|
|
payload.Release()
|
|
|
|
writeFinish := &sync.Mutex{}
|
|
|
|
writeFinish.Lock()
|
|
|
|
go func() {
|
|
v2writer := v2io.NewAdaptiveWriter(this.ConnOutput)
|
|
defer v2writer.Release()
|
|
|
|
v2io.Pipe(input, v2writer)
|
|
writeFinish.Unlock()
|
|
input.Release()
|
|
}()
|
|
|
|
writeFinish.Lock()
|
|
|
|
v2reader := v2io.NewAdaptiveReader(this.ConnInput)
|
|
defer v2reader.Release()
|
|
|
|
v2io.Pipe(v2reader, output)
|
|
output.Close()
|
|
|
|
return nil
|
|
}
|
|
|
|
func (this *OutboundConnectionHandler) Create(space app.Space, config interface{}) (proxy.OutboundHandler, error) {
|
|
return this, nil
|
|
}
|