fix up exmaples

This commit is contained in:
Jeff Becker 2017-08-28 12:18:24 -04:00
parent 574db0ab55
commit 028a5590ae
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05
10 changed files with 13799 additions and 280 deletions

View file

@ -0,0 +1,23 @@
var Protocol = require('bittorrent-protocol');
var stream = require('stream');
var WebSocks = require("./websocks.js").WebSocks;
function start_torrent(torrent_file_blob)
{
var torrent = new WebsocksTorrent();
var elem = document.getElementById("ws-server");
torrent.start(elem.value);
torrent.addTorrent(torrent_file_blob);
}
function start_downloading()
{
var elem = document.getElementById("torrent-file");
var files = elem.files;
for (var f of files) {
if(f.slice) {
start_torrent(f.slice());
}
}
}