v2ray-core/config.go

13 lines
203 B
Go

package core
type ConnectionConfig interface {
Protocol() string
Content() []byte
}
type PointConfig interface {
Port() uint16
InboundConfig() ConnectionConfig
OutboundConfig() ConnectionConfig
}