mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-12 13:16:45 -05:00
39 lines
831 B
Go
39 lines
831 B
Go
|
package mocks
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
|
||
|
"github.com/v2ray/v2ray-core"
|
||
|
v2net "github.com/v2ray/v2ray-core/net"
|
||
|
)
|
||
|
|
||
|
type InboundConnectionHandler struct {
|
||
|
Data2Send []byte
|
||
|
DataReturned *bytes.Buffer
|
||
|
Port uint16
|
||
|
Server *core.Point
|
||
|
}
|
||
|
|
||
|
func (handler *InboundConnectionHandler) Listen(port uint16) error {
|
||
|
handler.Port = port
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (handler *InboundConnectionHandler) Communicate(dest v2net.Address) error {
|
||
|
ray := handler.Server.NewInboundConnectionAccepted(dest)
|
||
|
|
||
|
input := ray.InboundInput()
|
||
|
output := ray.InboundOutput()
|
||
|
|
||
|
input <- handler.Data2Send
|
||
|
close(input)
|
||
|
|
||
|
v2net.ChanToWriter(handler.DataReturned, output)
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (handler *InboundConnectionHandler) Create(point *core.Point, config []byte) (core.InboundConnectionHandler, error) {
|
||
|
handler.Server = point
|
||
|
return handler, nil
|
||
|
}
|