]> Sergey Matveev's repositories - btrtrc.git/blob - utp_libutp.go
30bd69a774f7b0c076fafd68d3d8cbc5be66e1ae
[btrtrc.git] / utp_libutp.go
1 // +build cgo
2
3 package torrent
4
5 import (
6         "github.com/anacrolix/go-libutp"
7 )
8
9 func NewUtpSocket(network, addr string) (utpSocket, error) {
10         return utp.NewSocket(network, addr)
11 }