1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-24 13:24:24 -04:00
v2fly/proxy/vmess/inbound/config.go

12 lines
189 B
Go
Raw Normal View History

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