About
Dart library for implementing BitTorrent client.
Whole Dart Torrent client contains serival parts :
This package implements regular BitTorrent Protocol and manage above packages to work together for downloading.
BEP Support:
BEP 0003 The BitTorrent Protocol SpecificationBEP 0005 DHT ProtocalBEP 0006 Fast ExtensionBEP 0010 Extension ProtocolBEP 0011 Peer Exchange (PEX)BEP 0014 Local Service DiscoveryBEP 0015 UDP Tracker ProtocalBEP 0029 uTorrent transport protocolBEP 0055 Holepunch extension
Developing:
BEP 0009 Extension for Peers to Send Metadata Files
Other support will come soon.
How to use
This package need to dependency dtorrent_parser:
dependencies:
dtorrent_parser : ^1.0.4
dtorrent_task : '>= 0.2.1 < 2.0.0'
First , create a Torrent model via .torrent file:
var model = await Torrent.parse('some.torrent');
Second, create a Torrent Task and start it:
var task = TorrentTask.newTask(model,'savepath');
task.start();
User can add some listener to monitor TorrentTask running:
task.onTaskComplete(() => .....);
task.onFileComplete((String filePath) => .....);
and there is some method to control the TorrentTask:
// Stop task:
task.stop();
// Pause task:
task.pause();
// Resume task:
task.resume();