Versions in this module Expand all Collapse all v0 v0.14.4 Nov 26, 2015 Changes in this version + func RegisterInboundConnectionHandlerFactory(name string, factory InboundConnectionHandlerFactory) error + func RegisterOutboundConnectionHandlerFactory(name string, factory OutboundConnectionHandlerFactory) error + type InboundConnectionHandler interface + Listen func(port uint16) error + type InboundConnectionHandlerFactory interface + Create func(dispatch app.PacketDispatcher, config interface{}) (InboundConnectionHandler, error) + func GetInboundConnectionHandlerFactory(name string) InboundConnectionHandlerFactory + type OutboundConnectionHandler interface + Dispatch func(firstPacket v2net.Packet, ray ray.OutboundRay) error + type OutboundConnectionHandlerFactory interface + Create func(config interface{}) (OutboundConnectionHandler, error) + func GetOutboundConnectionHandlerFactory(name string) OutboundConnectionHandlerFactory