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

13 lines
242 B
Go
Raw Normal View History

2015-12-07 19:32:38 +00:00
package inbound
2016-12-07 11:32:03 +00:00
// GetDefaultValue returns default settings of DefaultConfig.
2016-11-27 20:39:09 +00:00
func (v *Config) GetDefaultValue() *DefaultConfig {
if v.GetDefault() == nil {
2016-10-17 12:35:13 +00:00
return &DefaultConfig{
AlterId: 32,
Level: 0,
}
}
2016-11-27 20:39:09 +00:00
return v.Default
2016-10-17 12:35:13 +00:00
}