1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/app/point/config/config.go

38 lines
612 B
Go
Raw Normal View History

2015-10-06 17:11:08 -04:00
package config
2015-11-13 17:43:58 -05:00
type DetourTag string
2015-10-28 18:18:07 -04:00
type ConnectionConfig interface {
2015-09-19 09:35:20 -04:00
Protocol() string
Settings() interface{}
2015-09-12 16:11:54 -04:00
}
2015-10-09 11:43:27 -04:00
type LogConfig interface {
AccessLog() string
}
2015-10-31 17:22:43 -04:00
type PortRange interface {
From() uint16
To() uint16
}
type InboundDetourConfig interface {
2015-10-31 09:08:13 -04:00
Protocol() string
2015-10-31 17:22:43 -04:00
PortRange() PortRange
Settings() interface{}
2015-10-31 09:08:13 -04:00
}
2015-11-13 17:43:58 -05:00
type OutboundDetourConfig interface {
Protocol() string
Tag() DetourTag
Settings() interface{}
}
type PointConfig interface {
2015-09-19 09:35:20 -04:00
Port() uint16
2015-10-09 11:43:27 -04:00
LogConfig() LogConfig
2015-09-19 09:35:20 -04:00
InboundConfig() ConnectionConfig
OutboundConfig() ConnectionConfig
2015-10-31 17:22:43 -04:00
InboundDetours() []InboundDetourConfig
2015-09-12 16:11:54 -04:00
}