| 1234567891011121314151617181920212223242526272829303132333435363738394041 | package coreimport (	"v2ray.com/core/common"	"v2ray.com/core/proxy/registry")func (this *AllocationStrategyConcurrency) GetValue() uint32 {	if this == nil {		return 3	}	return this.Value}func (this *AllocationStrategyRefresh) GetValue() uint32 {	if this == nil {		return 5	}	return this.Value}func (this *InboundConnectionConfig) GetAllocationStrategyValue() *AllocationStrategy {	if this.AllocationStrategy == nil {		return &AllocationStrategy{}	}	return this.AllocationStrategy}func (this *InboundConnectionConfig) GetTypedSettings() (interface{}, error) {	if this.GetSettings() == nil {		return nil, common.ErrBadConfiguration	}	return this.GetSettings().GetInstance()}func (this *OutboundConnectionConfig) GetTypedSettings() (interface{}, error) {	if this.GetSettings() == nil {		return nil, common.ErrBadConfiguration	}	return this.GetSettings().GetInstance()}
 |