1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-29 07:44:18 -04:00
v2fly/proxy/vmess/inbound/config.go
2016-11-27 21:39:09 +01:00

12 lines
180 B
Go

package inbound
func (v *Config) GetDefaultValue() *DefaultConfig {
if v.GetDefault() == nil {
return &DefaultConfig{
AlterId: 32,
Level: 0,
}
}
return v.Default
}