mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-03 07:56:42 -05:00
16 lines
293 B
Go
16 lines
293 B
Go
package receiver
|
|
|
|
func (v *AllocationStrategy) GetConcurrencyValue() uint32 {
|
|
if v == nil || v.Concurrency == nil {
|
|
return 3
|
|
}
|
|
return v.Concurrency.Value
|
|
}
|
|
|
|
func (v *AllocationStrategy) GetRefreshValue() uint32 {
|
|
if v == nil || v.Refresh == nil {
|
|
return 5
|
|
}
|
|
return v.Refresh.Value
|
|
}
|