v2ray-core/proxy/vmess/inbound/config.go

12 lines
189 B
Go
Raw Normal View History

2015-12-07 19:32:38 +00:00
package inbound
2016-10-17 12:35:13 +00:00
func (this *Config) GetDefaultValue() *DefaultConfig {
if this.GetDefault() == nil {
return &DefaultConfig{
AlterId: 32,
Level: 0,
}
}
return this.Default
}