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