1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00

enable tcp for shadowsocks server

This commit is contained in:
Darien Raymond 2016-11-02 22:19:01 +01:00
parent c5a92e00ef
commit 1600a59254
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -211,7 +211,7 @@ type ServerFactory struct{}
func (this *ServerFactory) StreamCapability() v2net.NetworkList {
return v2net.NetworkList{
Network: []v2net.Network{v2net.Network_RawTCP},
Network: []v2net.Network{v2net.Network_TCP, v2net.Network_RawTCP},
}
}