1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00
v2fly/config.go
2016-11-27 21:39:09 +01:00

56 lines
1.2 KiB
Go

package core
import (
"v2ray.com/core/common"
v2net "v2ray.com/core/common/net"
)
func (v *AllocationStrategyConcurrency) GetValue() uint32 {
if v == nil {
return 3
}
return v.Value
}
func (v *AllocationStrategyRefresh) GetValue() uint32 {
if v == nil {
return 5
}
return v.Value
}
func (v *InboundConnectionConfig) GetAllocationStrategyValue() *AllocationStrategy {
if v.AllocationStrategy == nil {
return &AllocationStrategy{}
}
return v.AllocationStrategy
}
func (v *InboundConnectionConfig) GetListenOnValue() v2net.Address {
if v.GetListenOn() == nil {
return v2net.AnyIP
}
return v.ListenOn.AsAddress()
}
func (v *InboundConnectionConfig) GetTypedSettings() (interface{}, error) {
if v.GetSettings() == nil {
return nil, common.ErrBadConfiguration
}
return v.GetSettings().GetInstance()
}
func (v *OutboundConnectionConfig) GetTypedSettings() (interface{}, error) {
if v.GetSettings() == nil {
return nil, common.ErrBadConfiguration
}
return v.GetSettings().GetInstance()
}
func (v *OutboundConnectionConfig) GetSendThroughValue() v2net.Address {
if v.GetSendThrough() == nil {
return v2net.AnyIP
}
return v.SendThrough.AsAddress()
}