torrent/utp_libutp.go

22 lines
374 B
Go
Raw Normal View History

// +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
}