1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-21 09:36:34 -05:00

fix test break

This commit is contained in:
V2Ray 2015-10-09 17:58:35 +02:00
parent 4815d32a28
commit b115df56c0

View File

@ -17,8 +17,17 @@ func (config *ConnectionConfig) Settings(config.Type) interface{} {
return config.SettingsValue
}
type LogConfig struct {
AccessLogValue string
}
func (config *LogConfig) AccessLog() string {
return config.AccessLogValue
}
type Config struct {
PortValue uint16
LogConfigValue *LogConfig
InboundConfigValue *ConnectionConfig
OutboundConfigValue *ConnectionConfig
}
@ -27,6 +36,10 @@ func (config *Config) Port() uint16 {
return config.PortValue
}
func (config *Config) LogConfig() config.LogConfig {
return config.LogConfigValue
}
func (config *Config) InboundConfig() config.ConnectionConfig {
return config.InboundConfigValue
}