| 12345678910111213141516171819202122232425262728 | // Package proxy contains all proxies used by V2Ray.package proxyimport (	"context"	"v2ray.com/core/app/dispatcher"	"v2ray.com/core/common/net"	"v2ray.com/core/transport/internet"	"v2ray.com/core/transport/ray")// An Inbound processes inbound connections.type Inbound interface {	Network() net.NetworkList	Process(context.Context, net.Network, internet.Connection, dispatcher.Interface) error}// An Outbound process outbound connections.type Outbound interface {	Process(context.Context, ray.OutboundRay, Dialer) error}// Dialer is used by OutboundHandler for creating outbound connections.type Dialer interface {	Dial(ctx context.Context, destination net.Destination) (internet.Connection, error)}
 |