| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package mocks
- import (
- "io"
- "sync"
- "v2ray.com/core/app"
- "v2ray.com/core/common/buf"
- v2io "v2ray.com/core/common/io"
- v2net "v2ray.com/core/common/net"
- "v2ray.com/core/proxy"
- "v2ray.com/core/transport/ray"
- )
- type OutboundConnectionHandler struct {
- Destination v2net.Destination
- ConnInput io.Reader
- ConnOutput io.Writer
- }
- func (v *OutboundConnectionHandler) Dispatch(destination v2net.Destination, payload *buf.Buffer, ray ray.OutboundRay) {
- input := ray.OutboundInput()
- output := ray.OutboundOutput()
- v.Destination = destination
- if !payload.IsEmpty() {
- v.ConnOutput.Write(payload.Bytes())
- }
- payload.Release()
- writeFinish := &sync.Mutex{}
- writeFinish.Lock()
- go func() {
- v2writer := v2io.NewAdaptiveWriter(v.ConnOutput)
- defer v2writer.Release()
- v2io.Pipe(input, v2writer)
- writeFinish.Unlock()
- input.Release()
- }()
- writeFinish.Lock()
- v2reader := v2io.NewAdaptiveReader(v.ConnInput)
- defer v2reader.Release()
- v2io.Pipe(v2reader, output)
- output.Close()
- }
- func (v *OutboundConnectionHandler) Create(space app.Space, config interface{}, sendThrough v2net.Address) (proxy.OutboundHandler, error) {
- return v, nil
- }
|