bittorrent-relay
Advanced tools
Comparing version 10.0.8 to 10.0.9
{ | ||
"name": "bittorrent-relay", | ||
"description": "Uses the mainline dht to relay requests to other trackers in a swarm", | ||
"version": "10.0.8", | ||
"version": "10.0.9", | ||
"bin": { | ||
@@ -6,0 +6,0 @@ "bittorrent-relay": "./bin/cmd.js" |
@@ -963,3 +963,3 @@ import Debug from 'debug' | ||
try { | ||
const message = buffer ? JSON.parse(Buffer.from(data).toString('utf-8')) : JSON.parse(data) | ||
const message = JSON.parse(data.toString('utf-8')) | ||
if(message.action === 'session'){ | ||
@@ -966,0 +966,0 @@ if(!message.sig || !ed.verify(message.sig, self.test, message.key) || self.sockets.has(message.hash)){ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101067