1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/inbound_detour_always.go

74 lines
2.0 KiB
Go
Raw Normal View History

2016-10-12 14:46:02 +00:00
package core
import (
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app"
"v2ray.com/core/common/dice"
"v2ray.com/core/common/log"
"v2ray.com/core/common/retry"
"v2ray.com/core/proxy"
)
2016-12-21 14:37:16 +00:00
// InboundDetourHandlerAlways is a handler for inbound detour connections.
type InboundDetourHandlerAlways struct {
space app.Space
2016-10-14 20:21:45 +00:00
config *InboundConnectionConfig
2016-06-04 12:25:13 +00:00
ich []proxy.InboundHandler
}
2016-10-14 20:21:45 +00:00
func NewInboundDetourHandlerAlways(space app.Space, config *InboundConnectionConfig) (*InboundDetourHandlerAlways, error) {
handler := &InboundDetourHandlerAlways{
space: space,
config: config,
}
ports := config.PortRange
2016-06-04 12:25:13 +00:00
handler.ich = make([]proxy.InboundHandler, 0, ports.To-ports.From+1)
2016-08-26 22:04:35 +00:00
for i := ports.FromPort(); i <= ports.ToPort(); i++ {
2016-10-14 20:21:45 +00:00
ichConfig, err := config.GetTypedSettings()
if err != nil {
return nil, err
}
2016-12-15 14:46:20 +00:00
ich, err := proxy.CreateInboundHandler(config.Settings.Type, space, ichConfig, &proxy.InboundHandlerMeta{
2016-10-17 12:35:13 +00:00
Address: config.GetListenOnValue(),
2016-08-12 21:37:21 +00:00
Port: i,
Tag: config.Tag,
StreamSettings: config.StreamSettings,
AllowPassiveConnection: config.AllowPassiveConnection,
})
if err != nil {
log.Error("Failed to create inbound connection handler: ", err)
return nil, err
}
2016-06-04 12:25:13 +00:00
handler.ich = append(handler.ich, ich)
}
return handler, nil
}
2016-11-27 20:39:09 +00:00
func (v *InboundDetourHandlerAlways) GetConnectionHandler() (proxy.InboundHandler, int) {
ich := v.ich[dice.Roll(len(v.ich))]
2016-12-23 11:42:25 +00:00
return ich, int(v.config.GetAllocationStrategyValue().GetRefreshValue())
}
2016-11-27 20:39:09 +00:00
func (v *InboundDetourHandlerAlways) Close() {
for _, ich := range v.ich {
2016-06-04 12:25:13 +00:00
ich.Close()
}
}
2016-12-21 14:37:16 +00:00
// Start starts the inbound connection handler.
2016-11-27 20:39:09 +00:00
func (v *InboundDetourHandlerAlways) Start() error {
for _, ich := range v.ich {
2016-11-20 20:47:51 +00:00
err := retry.ExponentialBackoff(10 /* times */, 200 /* ms */).On(func() error {
2016-06-04 12:25:13 +00:00
err := ich.Start()
if err != nil {
2016-06-04 12:25:13 +00:00
log.Error("Failed to start inbound detour:", err)
return err
}
return nil
})
if err != nil {
return err
}
}
return nil
}