1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-27 22:20:56 -04:00
v2fly/testing/mocks/config.go

37 lines
731 B
Go
Raw Normal View History

2015-09-19 09:35:20 -04:00
package mocks
import (
2015-10-06 17:11:08 -04:00
"github.com/v2ray/v2ray-core/config"
2015-09-19 09:35:20 -04:00
)
type ConnectionConfig struct {
ProtocolValue string
2015-10-06 17:11:08 -04:00
SettingsValue interface{}
2015-09-19 09:35:20 -04:00
}
func (config *ConnectionConfig) Protocol() string {
return config.ProtocolValue
}
2015-10-06 17:11:08 -04:00
func (config *ConnectionConfig) Settings(config.Type) interface{} {
return config.SettingsValue
2015-09-19 09:35:20 -04:00
}
type Config struct {
PortValue uint16
InboundConfigValue *ConnectionConfig
OutboundConfigValue *ConnectionConfig
}
func (config *Config) Port() uint16 {
return config.PortValue
}
2015-10-06 17:11:08 -04:00
func (config *Config) InboundConfig() config.ConnectionConfig {
2015-09-19 09:35:20 -04:00
return config.InboundConfigValue
}
2015-10-06 17:11:08 -04:00
func (config *Config) OutboundConfig() config.ConnectionConfig {
2015-09-19 09:35:20 -04:00
return config.OutboundConfigValue
}