Feature: add vmess support

This commit is contained in:
Dreamacro
2018-09-06 10:53:29 +08:00
parent af13acc171
commit 834baa9e27
10 changed files with 772 additions and 16 deletions

View File

@ -12,6 +12,7 @@ const (
Shadowsocks
Socks5
URLTest
Vmess
)
type ProxyAdapter interface {
@ -47,6 +48,8 @@ func (at AdapterType) String() string {
return "Socks5"
case URLTest:
return "URLTest"
case Vmess:
return "Vmess"
default:
return "Unknow"
}