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

16 lines
293 B
Go
Raw Normal View History

2017-01-14 18:17:06 -05:00
package proxyman
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
}