Documentation ¶
Overview ¶
Package point is a shell of V2Ray to run on various of systems. Point server is a full functionality proxying system. It consists of an inbound and an outbound connection, as well as any number of inbound and outbound detours. It provides a way internally to route network packets.
Index ¶
- Constants
- type Config
- type ConfigLoader
- type InboundConnectionConfig
- type InboundDetourAllocationConfig
- type InboundDetourConfig
- type InboundDetourHandler
- type InboundDetourHandlerAlways
- type InboundDetourHandlerDynamic
- type LogConfig
- type OutboundConnectionConfig
- type OutboundDetourConfig
- type Point
Constants ¶
View Source
const ( AllocationStrategyAlways = "always" AllocationStrategyRandom = "random" AllocationStrategyExternal = "external" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { Port v2net.Port LogConfig *LogConfig RouterConfig *router.Config DNSConfig *dns.Config InboundConfig *InboundConnectionConfig OutboundConfig *OutboundConnectionConfig InboundDetours []*InboundDetourConfig OutboundDetours []*OutboundDetourConfig TransportConfig *transport.Config }
type InboundConnectionConfig ¶
type InboundDetourConfig ¶
type InboundDetourHandler ¶
type InboundDetourHandler interface { Start() error Close() GetConnectionHandler() (proxy.InboundHandler, int) }
type InboundDetourHandlerAlways ¶
type InboundDetourHandlerAlways struct {
// contains filtered or unexported fields
}
Handler for inbound detour connections.
func NewInboundDetourHandlerAlways ¶
func NewInboundDetourHandlerAlways(space app.Space, config *InboundDetourConfig) (*InboundDetourHandlerAlways, error)
func (*InboundDetourHandlerAlways) Close ¶
func (this *InboundDetourHandlerAlways) Close()
func (*InboundDetourHandlerAlways) GetConnectionHandler ¶
func (this *InboundDetourHandlerAlways) GetConnectionHandler() (proxy.InboundHandler, int)
func (*InboundDetourHandlerAlways) Start ¶
func (this *InboundDetourHandlerAlways) Start() error
Starts the inbound connection handler.
type InboundDetourHandlerDynamic ¶
func NewInboundDetourHandlerDynamic ¶
func NewInboundDetourHandlerDynamic(space app.Space, config *InboundDetourConfig) (*InboundDetourHandlerDynamic, error)
func (*InboundDetourHandlerDynamic) Close ¶
func (this *InboundDetourHandlerDynamic) Close()
func (*InboundDetourHandlerDynamic) GetConnectionHandler ¶
func (this *InboundDetourHandlerDynamic) GetConnectionHandler() (proxy.InboundHandler, int)
func (*InboundDetourHandlerDynamic) RecyleHandles ¶
func (this *InboundDetourHandlerDynamic) RecyleHandles()
func (*InboundDetourHandlerDynamic) Start ¶
func (this *InboundDetourHandlerDynamic) Start() error
type OutboundDetourConfig ¶
type Point ¶
type Point struct {
// contains filtered or unexported fields
}
Point shell of V2Ray.
func NewPoint ¶
NewPoint returns a new Point server based on given configuration. The server is not started at this point.
func (*Point) GetHandler ¶
func (this *Point) GetHandler(tag string) (proxy.InboundHandler, int)
Source Files ¶
Click to show internal directories.
Click to hide internal directories.