gpt4 book ai didi

node.js - nodejs 中的 bittorrent tracker seeder 和 leecher

转载 作者:搜寻专家 更新时间:2023-10-31 23:05:19 27 4
gpt4 key购买 nike

我需要在 nodejs 中设置一个示例 bittorrent tracker、seeder 和 leecher。我已经编写了所有代码,但它不工作,我不知道为什么。我使用 bittorrent-tracker 启动了一个跟踪器,使用 nt 编写了 torrent 文件,还使用 ​​bittorrent-tracker 作为播种器连接到跟踪器(bt-tracker 同时具有客户端和服务器)。

最后,我启动了另一个只有 torrent 文件并连接到跟踪器的客户端。我能够在 torrent 中看到文件(在下载/leecher 客户端中)。但是文件下载本身不会开始。


正在使用的代码://跟踪器:

var Server = require('bittorrent-tracker').Server
var port=6881

var server = new Server({
udp: true, // enable udp server? [default=true]
http: true // enable http server? [default=true]
})

server.on('error', function (err) {
// fatal server error!
console.log(err.message)
})

server.on('warning', function (err) {
// client sent bad data. probably not a problem, just a buggy client.

console.log(err.message)
})

server.on('listening', function () {
console.log('tracker server is listening!')
})

// start tracker server listening!
server.listen(port)

// listen for individual tracker messages from peers:

server.on('start', function (addr, params) {
console.log('got start message from ' + addr)
console.log('params in the message: ' + JSON.stringify(params))
})

server.on('complete', function (addr, params) {})
server.on('update', function (addr, params) {})
server.on('stop', function (addr, params) {})

// get info hashes for all torrents in the tracker server
console.log(Object.keys(server.torrents))

//种子文件编写器和播种器代码

var nt=require('nt');
var fs=require('fs');

//var rs=nt.make('udp://tracker.publicbt.com:80');
//rs.pipe(fs.createWriteStream('param.torrent'));

function postWrite(){
var cl=require('bittorrent-tracker').Client;
var parseTorrent=require('parse-torrent');
var torrent=fs.readFileSync(__dirname + '/param.torrent');
var parsedTorrent=parseTorrent(torrent);
console.log(parsedTorrent);

var peerId = new Buffer('81276382172123141133')
var port = 6882

var client = new cl(peerId, port, parsedTorrent)

client.on('error', function (err) {
console.log(err.message)
// a tracker was unavailable or sent bad data to the client. you can probably ignore it
})

client.start()

client.on('update', function (data) {
console.log('got an announce response from tracker: ' + data.announce)
console.log('number of seeders in the swarm: ' + data.complete)
console.log('number of leechers in the swarm: ' + data.incomplete)
})

client.once('peer', function (addr) {
console.log('found a peer: ' + addr) // 85.10.239.191:48623
})

// announce that download has completed (and you are now a seeder)
client.complete();

client.update()
}

function writeTorrentFile() {
nt.makeWrite('param.torrent', 'udp://hola.127.0.0.1.xip.io:6881', '/Users/param/personal/nodejs/uploader/files',
// ['hello-world.txt'], function(err, torrent){
['hello-world.txt'], {}, function(err, torrent){
console.log(err);
console.log(torrent);
nt.read('param.torrent', function(err, torrent) {
if (err) throw err;
console.log('Info hash:', torrent.metadata.info);
});

postWrite();
});
}
writeTorrentFile();

//leecher代码

var BitTorrentClient = require('bittorrent-client');
var fs = require('fs');

var file = fs.readFileSync(__dirname + '/param.torrent')

var client = BitTorrentClient({
maxPeers: 100, // Max number of peers to connect to (per torrent)
path: __dirname, // Where to save the torrent file data
dht: true, // Whether or not to enable DHT
verify: true // Verify previously stored data before starting
});

client.add(file);

client.on('torrent', function (torrent) {
// torrent metadata has been fetched
console.log(torrent.name)

torrent.files.forEach(function (file) {
console.log("selecting "+file.name+" for download");
console.log(file.path)
st=file.createReadStream()
st.on('data', function(chunk){
console.log(chunk)
});
})
})

永远不会调用 leecher 上的数据事件 - 即使它进入了 torrent 的文件循环!

最佳答案

您需要使用真正的 Torrent 客户端来播种。现在,您只是在使用 bittorrent-tracker,它只是告诉跟踪器服务器您是播种者,但实际上并不包含任何用于向对等方发送文件的代码,事实上,甚至监听任何端口。要真正播种,您应该使用完整的 Torrent 客户端。

在您的示例中,您已经在使用 bittorrent-client(由我编写),但我建议您改用 webtorrent,因为我已弃用 bittorrent -client 刚才。

下面是一些种子文件的代码:

var WebTorrent = require('webtorrent')
var client = new WebTorrent()
client.seed('/path/to/file', function (torrent) {
console.log('Client is seeding:', torrent.magnetUri)
})

这里是关于 client.seed 的完整文档:https://github.com/feross/webtorrent/blob/master/docs/api.md#clientseedinput-opts-function-onseed-torrent-

关于node.js - nodejs 中的 bittorrent tracker seeder 和 leecher,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24296710/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com