1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 01:45:23 +00:00

remove unused variable

This commit is contained in:
v2ray 2016-06-27 08:47:47 +02:00
parent e9fdc35c3c
commit 5ee87404fd
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -1,7 +1,6 @@
package kcp
import (
"errors"
"math/rand"
"net"
@ -10,10 +9,6 @@ import (
"github.com/v2ray/v2ray-core/transport/internet"
)
var (
ErrUnknownDestination = errors.New("Destination IP can't be resolved.")
)
func DialKCP(src v2net.Address, dest v2net.Destination) (internet.Connection, error) {
udpDest := v2net.UDPDestination(dest.Address(), dest.Port())
log.Info("Dialling KCP to ", udpDest)