1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-06 03:54:22 -04:00
v2fly/proxy/proxy.go

23 lines
726 B
Go
Raw Normal View History

// Package proxy contains all proxies used by V2Ray.
package proxy
import (
2016-01-02 17:32:18 -05:00
v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/transport/ray"
)
2016-01-02 17:32:18 -05:00
// A InboundConnectionHandler handles inbound network connections to V2Ray.
type InboundConnectionHandler interface {
2016-01-06 16:39:56 -05:00
// Listen starts a InboundConnectionHandler by listen on a specific port.
2016-01-02 17:32:18 -05:00
Listen(port v2net.Port) error
2016-01-06 16:39:56 -05:00
// Close stops the handler to accepting anymore inbound connections.
Close()
}
2016-01-02 17:32:18 -05:00
// An OutboundConnectionHandler handles outbound network connection for V2Ray.
type OutboundConnectionHandler interface {
// Dispatch sends one or more Packets to its destination.
Dispatch(firstPacket v2net.Packet, ray ray.OutboundRay) error
}