mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-05 09:47:56 -05:00
33 lines
645 B
Go
33 lines
645 B
Go
package proxyman
|
|
|
|
import (
|
|
"context"
|
|
|
|
"v2ray.com/core/proxy"
|
|
)
|
|
|
|
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
|
|
}
|
|
|
|
func (c *OutboundHandlerConfig) GetProxyHandler(ctx context.Context) (proxy.Outbound, error) {
|
|
if c == nil {
|
|
return nil, newError("OutboundHandlerConfig is nil")
|
|
}
|
|
config, err := c.ProxySettings.GetInstance()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return proxy.CreateOutboundHandler(ctx, config)
|
|
}
|