1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 14:35:23 +00:00
v2fly/app/proxyman/config.go

33 lines
645 B
Go
Raw Normal View History

2017-01-14 23:17:06 +00:00
package proxyman
2017-01-14 23:48:37 +00:00
import (
"context"
"v2ray.com/core/proxy"
)
2017-01-14 23:17:06 +00:00
func (s *AllocationStrategy) GetConcurrencyValue() uint32 {
if s == nil || s.Concurrency == nil {
return 3
}
return s.Concurrency.Value
}
func (s *AllocationStrategy) GetRefreshValue() uint32 {
if s == nil || s.Refresh == nil {
return 5
}
return s.Refresh.Value
}
2017-01-14 23:48:37 +00:00
2017-01-26 19:57:18 +00:00
func (c *OutboundHandlerConfig) GetProxyHandler(ctx context.Context) (proxy.Outbound, error) {
2017-01-14 23:48:37 +00:00
if c == nil {
2017-04-08 23:43:25 +00:00
return nil, newError("OutboundHandlerConfig is nil")
2017-01-14 23:48:37 +00:00
}
config, err := c.ProxySettings.GetInstance()
if err != nil {
return nil, err
}
return proxy.CreateOutboundHandler(ctx, config)
}