2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/utp_go.go
2017-06-16 18:08:24 +10:00

12 lines
173 B
Go

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