2016-06-14 16:54:08 -04:00
|
|
|
package kcp
|
|
|
|
|
|
|
|
import (
|
2016-06-14 18:30:11 -04:00
|
|
|
"net"
|
2016-07-12 12:54:16 -04:00
|
|
|
"sync/atomic"
|
2016-06-14 18:30:11 -04:00
|
|
|
|
2016-06-29 17:53:50 -04:00
|
|
|
"github.com/v2ray/v2ray-core/common/dice"
|
2016-06-17 10:51:41 -04:00
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
2016-06-14 16:54:08 -04:00
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
|
|
"github.com/v2ray/v2ray-core/transport/internet"
|
|
|
|
)
|
|
|
|
|
2016-07-12 12:54:16 -04:00
|
|
|
var (
|
|
|
|
globalConv = uint32(dice.Roll(65536))
|
|
|
|
)
|
|
|
|
|
2016-06-14 16:54:08 -04:00
|
|
|
func DialKCP(src v2net.Address, dest v2net.Destination) (internet.Connection, error) {
|
2016-06-17 10:51:41 -04:00
|
|
|
udpDest := v2net.UDPDestination(dest.Address(), dest.Port())
|
2016-06-27 02:38:02 -04:00
|
|
|
log.Info("Dialling KCP to ", udpDest)
|
2016-06-17 10:51:41 -04:00
|
|
|
conn, err := internet.DialToDest(src, udpDest)
|
2016-06-14 16:54:08 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-06-14 18:30:11 -04:00
|
|
|
|
2016-08-06 15:59:22 -04:00
|
|
|
cpip, err := effectiveConfig.GetAuthenticator()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-07-12 12:54:16 -04:00
|
|
|
conv := uint16(atomic.AddUint32(&globalConv, 1))
|
|
|
|
session := NewConnection(conv, conn, conn.LocalAddr().(*net.UDPAddr), conn.RemoteAddr().(*net.UDPAddr), cpip)
|
2016-06-17 10:51:41 -04:00
|
|
|
session.FetchInputFrom(conn)
|
|
|
|
|
|
|
|
return session, nil
|
2016-06-14 16:54:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
internet.KCPDialer = DialKCP
|
|
|
|
}
|