2
0
mirror of synced 2025-02-23 22:28:11 +00:00
torrent/utp_libutp.go
2017-06-16 18:08:24 +10:00

12 lines
178 B
Go

// +build cgo
package torrent
import (
"github.com/anacrolix/go-libutp"
)
func NewUtpSocket(network, addr string) (utpSocket, error) {
return utp.NewSocket(network, addr)
}