torrent/web_seed.go

69 lines
1.1 KiB
Go
Raw Normal View History

2020-05-30 07:52:27 +00:00
package torrent
import (
"net/http"
2020-06-01 08:25:45 +00:00
"github.com/anacrolix/torrent/segments"
"github.com/anacrolix/torrent/webseed"
2020-05-30 07:52:27 +00:00
)
2020-06-01 08:25:45 +00:00
type httpRequestResult struct {
resp *http.Response
err error
}
type requestPart struct {
req *http.Request
e segments.Extent
result chan httpRequestResult
}
type webseedRequest struct {
cancel func()
}
2020-05-30 07:52:27 +00:00
type webSeed struct {
2020-06-01 08:25:45 +00:00
client webseed.Client
peer peer
2020-05-31 03:09:56 +00:00
}
2020-06-01 08:25:45 +00:00
type webseedClientEvent interface{}
type webseedRequestFailed struct {
r request
err error
}
var _ PeerImpl = (*webSeed)(nil)
2020-05-31 03:22:36 +00:00
func (ws *webSeed) PostCancel(r request) {
2020-06-01 08:25:45 +00:00
ws.Cancel(r)
2020-05-30 07:52:27 +00:00
}
2020-05-31 03:22:36 +00:00
func (ws *webSeed) WriteInterested(interested bool) bool {
2020-05-30 07:52:27 +00:00
return true
}
2020-05-31 03:22:36 +00:00
func (ws *webSeed) Cancel(r request) bool {
2020-06-01 08:25:45 +00:00
//panic("implement me")
return true
2020-05-30 07:52:27 +00:00
}
2020-05-31 03:22:36 +00:00
func (ws *webSeed) Request(r request) bool {
2020-06-01 08:25:45 +00:00
ws.client.Request(webseed.RequestSpec{ws.peer.t.requestOffset(r), int64(r.Length)})
return true
2020-05-30 07:52:27 +00:00
}
2020-05-31 03:22:36 +00:00
func (ws *webSeed) ConnectionFlags() string {
2020-05-30 07:52:27 +00:00
return "WS"
}
2020-05-31 03:22:36 +00:00
func (ws *webSeed) Drop() {
2020-05-30 07:52:27 +00:00
}
2020-05-31 03:22:36 +00:00
func (ws *webSeed) UpdateRequests() {
2020-05-30 07:52:27 +00:00
ws.peer.doRequestState()
}
2020-05-31 03:09:56 +00:00
2020-05-31 03:22:36 +00:00
func (ws *webSeed) Close() {}