1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-04 08:15:21 -05:00

dynamic allocation of inbounds

This commit is contained in:
v2ray
2016-01-22 16:25:01 +01:00
parent f478db2b2e
commit 98d99a1fd0
6 changed files with 274 additions and 8 deletions

View File

@@ -87,6 +87,13 @@ func NewPoint(pConfig *Config) (*Point, error) {
return nil, BadConfiguration
}
detourHandler = dh
case AllocationStrategyRandom:
dh, err := NewInboundDetourHandlerDynamic(vpoint.space.ForContext(detourConfig.Tag), detourConfig)
if err != nil {
log.Error("Point: Failed to create detour handler: ", err)
return nil, BadConfiguration
}
detourHandler = dh
default:
log.Error("Point: Unknown allocation strategy: ", allocConfig.Strategy)
return nil, BadConfiguration