| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 | package mocksimport (	"github.com/v2ray/v2ray-core/app/point/config"	routerconfig "github.com/v2ray/v2ray-core/app/router/config"	v2net "github.com/v2ray/v2ray-core/common/net")type ConnectionConfig struct {	ProtocolValue string	SettingsValue interface{}}func (config *ConnectionConfig) Protocol() string {	return config.ProtocolValue}func (config *ConnectionConfig) Settings() interface{} {	return config.SettingsValue}type LogConfig struct {	AccessLogValue string}type PortRange struct {	FromValue uint16	ToValue   uint16}func (this *PortRange) From() uint16 {	return this.FromValue}func (this *PortRange) To() uint16 {	return this.ToValue}type InboundDetourConfig struct {	ConnectionConfig	PortRangeValue *PortRange}func (this *InboundDetourConfig) PortRange() v2net.PortRange {	return this.PortRangeValue}type OutboundDetourConfig struct {	ConnectionConfig	TagValue config.DetourTag}func (this *OutboundDetourConfig) Tag() config.DetourTag {	return this.TagValue}func (config *LogConfig) AccessLog() string {	return config.AccessLogValue}type Config struct {	PortValue            uint16	LogConfigValue       *LogConfig	RouterConfigValue    routerconfig.RouterConfig	InboundConfigValue   *ConnectionConfig	OutboundConfigValue  *ConnectionConfig	InboundDetoursValue  []*InboundDetourConfig	OutboundDetoursValue []*OutboundDetourConfig}func (config *Config) Port() uint16 {	return config.PortValue}func (config *Config) LogConfig() config.LogConfig {	return config.LogConfigValue}func (this *Config) RouterConfig() routerconfig.RouterConfig {	return this.RouterConfigValue}func (config *Config) InboundConfig() config.ConnectionConfig {	return config.InboundConfigValue}func (config *Config) OutboundConfig() config.ConnectionConfig {	return config.OutboundConfigValue}func (this *Config) InboundDetours() []config.InboundDetourConfig {	detours := make([]config.InboundDetourConfig, len(this.InboundDetoursValue))	for idx, detour := range this.InboundDetoursValue {		detours[idx] = detour	}	return detours}func (this *Config) OutboundDetours() []config.OutboundDetourConfig {	detours := make([]config.OutboundDetourConfig, len(this.OutboundDetoursValue))	for idx, detour := range this.OutboundDetoursValue {		detours[idx] = detour	}	return detours}
 |