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