1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 03:25:23 +00:00
v2fly/shell/point/inbound_detour.go

65 lines
1.6 KiB
Go
Raw Normal View History

2015-10-31 23:11:41 +00:00
package point
import (
2015-12-05 21:55:45 +00:00
"github.com/v2ray/v2ray-core/app"
2015-10-31 23:11:41 +00:00
"github.com/v2ray/v2ray-core/common/log"
2015-12-02 11:47:54 +00:00
v2net "github.com/v2ray/v2ray-core/common/net"
2015-10-31 23:11:41 +00:00
"github.com/v2ray/v2ray-core/common/retry"
"github.com/v2ray/v2ray-core/proxy"
2016-01-02 22:32:18 +00:00
proxyrepo "github.com/v2ray/v2ray-core/proxy/repo"
2015-10-31 23:11:41 +00:00
)
type InboundConnectionHandlerWithPort struct {
2015-12-02 11:47:54 +00:00
port v2net.Port
2016-01-02 22:32:18 +00:00
handler proxy.InboundConnectionHandler
2015-10-31 23:11:41 +00:00
}
2015-12-03 14:12:47 +00:00
// Handler for inbound detour connections.
2015-10-31 23:11:41 +00:00
type InboundDetourHandler struct {
space app.Space
2016-01-17 20:43:10 +00:00
config *InboundDetourConfig
2015-10-31 23:11:41 +00:00
ich []*InboundConnectionHandlerWithPort
}
func (this *InboundDetourHandler) Initialize() error {
2016-01-17 20:43:10 +00:00
ports := this.config.PortRange
2016-01-15 12:39:36 +00:00
this.ich = make([]*InboundConnectionHandlerWithPort, 0, ports.To-ports.From+1)
for i := ports.From; i <= ports.To; i++ {
2016-01-17 20:43:10 +00:00
ichConfig := this.config.Settings
ich, err := proxyrepo.CreateInboundConnectionHandler(this.config.Protocol, this.space, ichConfig)
2015-10-31 23:11:41 +00:00
if err != nil {
2016-01-18 11:24:33 +00:00
log.Error("Failed to create inbound connection handler: ", err)
2015-10-31 23:11:41 +00:00
return err
}
this.ich = append(this.ich, &InboundConnectionHandlerWithPort{
port: i,
handler: ich,
})
}
return nil
}
2016-01-03 23:33:25 +00:00
func (this *InboundDetourHandler) Close() {
for _, ich := range this.ich {
ich.handler.Close()
}
}
2015-12-03 14:12:47 +00:00
// Starts the inbound connection handler.
2015-10-31 23:11:41 +00:00
func (this *InboundDetourHandler) Start() error {
for _, ich := range this.ich {
2015-12-04 15:49:10 +00:00
err := retry.Timed(100 /* times */, 100 /* ms */).On(func() error {
2015-12-02 20:44:01 +00:00
err := ich.handler.Listen(ich.port)
2015-10-31 23:11:41 +00:00
if err != nil {
2016-01-18 11:24:33 +00:00
log.Error("Failed to start inbound detour on port ", ich.port, ": ", err)
2015-10-31 23:11:41 +00:00
return err
}
return nil
})
2015-12-04 15:49:10 +00:00
if err != nil {
2015-12-04 15:49:45 +00:00
return err
2015-12-04 15:49:10 +00:00
}
2015-10-31 23:11:41 +00:00
}
return nil
}