Feature: add http/https [connect] proxy (#52)

This commit is contained in:
beyondkmp
2018-12-03 23:27:00 +08:00
committed by Dreamacro
parent f5715c4f42
commit 6636db242b
3 changed files with 158 additions and 0 deletions

View File

@ -12,6 +12,7 @@ const (
Selector
Shadowsocks
Socks5
Http
URLTest
Vmess
)
@ -50,6 +51,8 @@ func (at AdapterType) String() string {
return "Shadowsocks"
case Socks5:
return "Socks5"
case Http:
return "Http"
case URLTest:
return "URLTest"
case Vmess: