torrent/utp_libutp.go

23 lines
408 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/go-libutp"
)
func NewUtpSocket(network, addr string, fc firewallCallback) (utpSocket, error) {
s, err := utp.NewSocket(network, addr)
if s == nil {
return nil, err
}
if err != nil {
return s, err
}
if fc != nil {
s.SetFirewallCallback(utp.FirewallCallback(fc))
}
return s, err
2017-06-16 08:08:24 +00:00
}