mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 02:16:10 -05:00
38 lines
744 B
Go
38 lines
744 B
Go
package config
|
|
|
|
import (
|
|
routerconfig "github.com/v2ray/v2ray-core/app/router/config"
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
)
|
|
|
|
type ConnectionConfig interface {
|
|
Protocol() string
|
|
Settings() interface{}
|
|
}
|
|
|
|
type LogConfig interface {
|
|
AccessLog() string
|
|
}
|
|
|
|
type InboundDetourConfig interface {
|
|
Protocol() string
|
|
PortRange() v2net.PortRange
|
|
Settings() interface{}
|
|
}
|
|
|
|
type OutboundDetourConfig interface {
|
|
Protocol() string
|
|
Tag() string
|
|
Settings() interface{}
|
|
}
|
|
|
|
type PointConfig interface {
|
|
Port() v2net.Port
|
|
LogConfig() LogConfig
|
|
RouterConfig() routerconfig.RouterConfig
|
|
InboundConfig() ConnectionConfig
|
|
OutboundConfig() ConnectionConfig
|
|
InboundDetours() []InboundDetourConfig
|
|
OutboundDetours() []OutboundDetourConfig
|
|
}
|