ut_pex:针对Webtorrent的ut_pex bittorrent协议(PEX)的实现 源码
ut_pex 对等发现(PEX)的BitTorrent扩展(BEP11) Node.js实现,这是bittorrent客户端使用的最流行的PEX(对等交换)协议。 此扩展的目的是允许对等体直接彼此交换已知对等体,从而促进更有效的对等体发现和更健康的群体。 我可以在第2.1.4.3节中找到对(非标准化)ut_pex协议的最佳描述。 使用在浏览器中工作! 使用此模块。 安装 npm install ut_pex 用法 该软件包应与一起使用,该支持类似插件的系统,用于通过附加功能扩展协议。 假设您已经在使用bittorrent-protocol 。 您的代码可能看起来像这样: const Protocol = require ( 'bittorrent-protocol' ) const net = require ( 'net' ) net . createServer ( soc
用户评论