You've already forked torrent-client
mirror of
https://github.com/veggiedefender/torrent-client.git
synced 2025-11-06 09:29:16 +02:00
Super janky download first piece
This commit is contained in:
@@ -49,9 +49,11 @@ func (t *Torrent) Download() error {
|
||||
// fmt.Println(peers)
|
||||
peers := []p2p.Peer{{IP: net.IP{127, 0, 0, 1}, Port: 51413}}
|
||||
downloader := p2p.Downloader{
|
||||
Peers: peers,
|
||||
InfoHash: t.InfoHash,
|
||||
Length: t.Length,
|
||||
Peers: peers,
|
||||
PeerID: peerID,
|
||||
InfoHash: t.InfoHash,
|
||||
PieceHashes: t.PieceHashes,
|
||||
Length: t.Length,
|
||||
}
|
||||
err = downloader.Download()
|
||||
return err
|
||||
|
||||
Reference in New Issue
Block a user