mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
32 lines
481 B
Go
32 lines
481 B
Go
package config
|
|
|
|
type Type string
|
|
|
|
const (
|
|
TypeInbound = Type("inbound")
|
|
TypeOutbound = Type("outbound")
|
|
)
|
|
|
|
type RouterConfig interface {
|
|
Strategy() string
|
|
Settings() interface{}
|
|
}
|
|
|
|
type ConnectionTag string
|
|
|
|
type ConnectionConfig interface {
|
|
Protocol() string
|
|
Settings() interface{}
|
|
}
|
|
|
|
type LogConfig interface {
|
|
AccessLog() string
|
|
}
|
|
|
|
type PointConfig interface {
|
|
Port() uint16
|
|
LogConfig() LogConfig
|
|
InboundConfig() ConnectionConfig
|
|
OutboundConfig() ConnectionConfig
|
|
}
|