1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 06:46:14 -04:00

enable socks outbound

This commit is contained in:
Darien Raymond 2017-01-08 01:25:35 +01:00
parent a54f1da049
commit 24a8ad6dcf
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -4,6 +4,7 @@ import (
"encoding/json"
"io"
"strings"
"v2ray.com/core"
"v2ray.com/core/common/errors"
v2net "v2ray.com/core/common/net"
@ -25,6 +26,7 @@ var (
"freedom": func() interface{} { return new(FreedomConfig) },
"shadowsocks": func() interface{} { return new(ShadowsocksClientConfig) },
"vmess": func() interface{} { return new(VMessOutboundConfig) },
"socks": func() interface{} { return new(SocksClientConfig) },
}, "protocol", "settings")
)