1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00
This commit is contained in:
v2ray 2015-12-03 15:19:45 +01:00
commit f3f1c09e49
2 changed files with 5 additions and 0 deletions

View File

@ -13,6 +13,7 @@ type InboundConnectionHandlerWithPort struct {
handler connhandler.InboundConnectionHandler
}
// Handler for inbound detour connections.
type InboundDetourHandler struct {
point *Point
config config.InboundDetourConfig
@ -43,6 +44,7 @@ func (this *InboundDetourHandler) Initialize() error {
return nil
}
// Starts the inbound connection handler.
func (this *InboundDetourHandler) Start() error {
for _, ich := range this.ich {
return retry.Timed(100 /* times */, 100 /* ms */).On(func() error {

View File

@ -129,6 +129,9 @@ func (this *Point) Start() error {
return nil
}
// Dispatches a Packet to an OutboundConnection.
// The packet will be passed through the router (if configured), and then sent to an outbound
// connection with matching tag.
func (this *Point) DispatchToOutbound(packet v2net.Packet) ray.InboundRay {
direct := ray.NewRay()
dest := packet.Destination()