mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 10:08:15 -05:00
KCP: fix: meta type
This commit is contained in:
parent
c07d478ab5
commit
4f9a9d1f0c
@ -64,19 +64,19 @@ func DialWithoutCache(src v2net.Address, dest v2net.Destination) (net.Conn, erro
|
|||||||
return dialer.Dial(dest.Network().String(), dest.NetAddr())
|
return dialer.Dial(dest.Network().String(), dest.NetAddr())
|
||||||
}
|
}
|
||||||
|
|
||||||
func Dial3(src v2net.Address, dest v2net.Destination, proxyMeta proxy.InboundHandlerMeta) (*Connection, error) {
|
func Dial3(src v2net.Address, dest v2net.Destination, proxyMeta proxy.OutboundHandlerMeta) (*Connection, error) {
|
||||||
if proxyMeta.KcpSupported && transport.IsKcpEnabled() {
|
if proxyMeta.KcpSupported && transport.IsKcpEnabled() {
|
||||||
DialKCP3(src, dest, proxyMeta)
|
DialKCP3(src, dest, proxyMeta)
|
||||||
}
|
}
|
||||||
return Dial(src, dest)
|
return Dial(src, dest)
|
||||||
}
|
}
|
||||||
func DialWithoutCache3(src v2net.Address, dest v2net.Destination, proxyMeta proxy.InboundHandlerMeta) (net.Conn, error) {
|
func DialWithoutCache3(src v2net.Address, dest v2net.Destination, proxyMeta proxy.OutboundHandlerMeta) (net.Conn, error) {
|
||||||
if proxyMeta.KcpSupported && transport.IsKcpEnabled() {
|
if proxyMeta.KcpSupported && transport.IsKcpEnabled() {
|
||||||
}
|
}
|
||||||
return DialWithoutCache(src, dest)
|
return DialWithoutCache(src, dest)
|
||||||
}
|
}
|
||||||
|
|
||||||
func DialKCP3(src v2net.Address, dest v2net.Destination, proxyMeta proxy.InboundHandlerMeta) (*Connection, error) {
|
func DialKCP3(src v2net.Address, dest v2net.Destination, proxyMeta proxy.OutboundHandlerMeta) (*Connection, error) {
|
||||||
if src == nil {
|
if src == nil {
|
||||||
src = v2net.AnyIP
|
src = v2net.AnyIP
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user