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

13 lines
242 B
Go

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