1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-02-14 04:05:22 -05:00

Move proxy/common/config to proxy/internal/config

This commit is contained in:
v2ray
2016-01-02 17:40:51 +01:00
parent dc86eb76da
commit 1c4c9bffad
29 changed files with 225 additions and 221 deletions

View File

@@ -9,7 +9,7 @@ import (
type ConnectionConfig interface {
Protocol() string
Settings() interface{}
Settings() []byte
}
type LogConfig interface {
@@ -40,13 +40,13 @@ type InboundDetourConfig interface {
PortRange() v2net.PortRange
Tag() string
Allocation() InboundDetourAllocationConfig
Settings() interface{}
Settings() []byte
}
type OutboundDetourConfig interface {
Protocol() string
Tag() string
Settings() interface{}
Settings() []byte
}
type PointConfig interface {