2017-01-14 18:17:06 -05:00
|
|
|
package proxyman
|
|
|
|
|
2017-01-14 18:48:37 -05:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"v2ray.com/core/proxy"
|
|
|
|
)
|
|
|
|
|
2017-01-14 18:17:06 -05: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 18:48:37 -05:00
|
|
|
|
2017-01-26 14:57:18 -05:00
|
|
|
func (c *OutboundHandlerConfig) GetProxyHandler(ctx context.Context) (proxy.Outbound, error) {
|
2017-01-14 18:48:37 -05:00
|
|
|
if c == nil {
|
|
|
|
return nil, errors.New("Proxyman: OutboundHandlerConfig is nil.")
|
|
|
|
}
|
|
|
|
config, err := c.ProxySettings.GetInstance()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return proxy.CreateOutboundHandler(ctx, config)
|
|
|
|
}
|