1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00
v2fly/proxy/proxy.go

32 lines
940 B
Go
Raw Normal View History

// Package proxy contains all proxies used by V2Ray.
2016-02-03 16:56:40 -05:00
package proxy // import "github.com/v2ray/v2ray-core/proxy"
import (
2016-04-25 18:13:26 -04:00
"github.com/v2ray/v2ray-core/common/alloc"
2016-01-02 17:32:18 -05:00
v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/transport/ray"
)
2016-03-06 10:36:08 -05:00
type HandlerState int
const (
HandlerStateStopped = HandlerState(0)
HandlerStateRunning = HandlerState(1)
)
2016-01-25 15:33:28 -05:00
// An InboundHandler handles inbound network connections to V2Ray.
type InboundHandler interface {
2016-06-03 18:38:22 -04:00
// Listen starts a InboundHandler.
Start() error
2016-01-06 16:39:56 -05:00
// Close stops the handler to accepting anymore inbound connections.
Close()
2016-01-19 17:41:40 -05:00
// Port returns the port that the handler is listening on.
Port() v2net.Port
}
2016-01-25 15:33:28 -05:00
// An OutboundHandler handles outbound network connection for V2Ray.
type OutboundHandler interface {
2016-01-02 17:32:18 -05:00
// Dispatch sends one or more Packets to its destination.
2016-04-25 18:13:26 -04:00
Dispatch(destination v2net.Destination, payload *alloc.Buffer, ray ray.OutboundRay) error
}