2016-01-01 17:44:11 -05:00
|
|
|
// 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"
|
2016-01-01 17:44:11 -05:00
|
|
|
|
|
|
|
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-01 17:44:11 -05:00
|
|
|
)
|
|
|
|
|
2016-01-25 15:33:28 -05:00
|
|
|
// An InboundHandler handles inbound network connections to V2Ray.
|
2016-01-25 11:18:24 -05:00
|
|
|
type InboundHandler interface {
|
2016-01-25 15:33:28 -05:00
|
|
|
// Listen starts a InboundHandler 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.
|
2016-01-03 17:30:37 -05:00
|
|
|
Close()
|
2016-01-19 17:41:40 -05:00
|
|
|
// Port returns the port that the handler is listening on.
|
|
|
|
Port() v2net.Port
|
2016-01-01 17:44:11 -05:00
|
|
|
}
|
|
|
|
|
2016-01-25 15:33:28 -05:00
|
|
|
// An OutboundHandler handles outbound network connection for V2Ray.
|
2016-01-25 11:18:24 -05:00
|
|
|
type OutboundHandler interface {
|
2016-01-02 17:32:18 -05:00
|
|
|
// Dispatch sends one or more Packets to its destination.
|
|
|
|
Dispatch(firstPacket v2net.Packet, ray ray.OutboundRay) error
|
2016-01-01 17:44:11 -05:00
|
|
|
}
|