fix test break

pull/40/head
V2Ray 2015-10-09 17:58:35 +02:00
parent 4815d32a28
commit b115df56c0
1 changed files with 13 additions and 0 deletions

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
}