2
0
mirror of synced 2025-02-23 14:18:13 +00:00
torrent/wstracker.go
2020-04-06 16:45:47 +10:00

22 lines
313 B
Go

package torrent
import (
"fmt"
"net/url"
"github.com/anacrolix/torrent/webtorrent"
)
type websocketTracker struct {
url url.URL
*webtorrent.Client
}
func (me websocketTracker) statusLine() string {
return fmt.Sprintf("%q", me.url.String())
}
func (me websocketTracker) URL() url.URL {
return me.url
}