Fix: Dial3 misbehave

This commit is contained in:
Shelikhoo
2016-06-12 15:21:59 +08:00
parent 579786166c
commit 9315bb29fb
+1 -1
View File
@@ -66,7 +66,7 @@ func DialWithoutCache(src v2net.Address, dest v2net.Destination) (net.Conn, erro
func Dial3(src v2net.Address, dest v2net.Destination, proxyMeta *proxy.OutboundHandlerMeta) (*Connection, error) {
if proxyMeta.KcpSupported && transport.IsKcpEnabled() {
DialKCP3(src, dest, proxyMeta)
return DialKCP3(src, dest, proxyMeta)
}
return Dial(src, dest)
}