torrent/utp_go.go

18 lines
307 B
Go
Raw Normal View History

2021-07-14 04:35:52 +00:00
//go:build !cgo || disable_libutp
// +build !cgo disable_libutp
2017-06-16 08:08:24 +00:00
package torrent
import (
"github.com/anacrolix/utp"
)
func NewUtpSocket(network, addr string, _ firewallCallback) (utpSocket, error) {
s, err := utp.NewSocket(network, addr)
if s == nil {
return nil, err
} else {
return s, err
}
2017-06-16 08:08:24 +00:00
}