mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-12 23:36:43 -05:00
15 lines
263 B
Go
15 lines
263 B
Go
// +build !confonly
|
|
|
|
package inbound
|
|
|
|
// GetDefaultValue returns default settings of DefaultConfig.
|
|
func (c *Config) GetDefaultValue() *DefaultConfig {
|
|
if c.GetDefault() == nil {
|
|
return &DefaultConfig{
|
|
AlterId: 32,
|
|
Level: 0,
|
|
}
|
|
}
|
|
return c.Default
|
|
}
|