PHP class for control Vuze torrent-client.
Require installed XML over Http plugin for Vuze.
Class is based on a class of application Azureus PHP Control Layer.
The code has been rewritten, optimized and prepared for use in third-party projects.
$client = new VuzeClient('127.0.0.1', 6884);
print_r($client->getDownloads());
$client = new VuzeClient('127.0.0.1', 6884);
$client->addTorrent(file_get_contents('/home/cosmologist/Downloads/some.torrent'));
$client = new VuzeClient('127.0.0.1', 6884);
$client->addTorrentUrl('http://localhost/some.torrent');