Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dispatch-proxy

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dispatch-proxy - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

4

lib/socks.js

@@ -98,5 +98,5 @@ var ADDRTYPE, AUTH, CMD, Consumable, EventEmitter, RSV, STATUS, SocksServer, VER, net, u,

case ADDRTYPE.IPV4:
return u.formatIPv4(data.byte(4));
return u.formatIPv4(data.read(4));
case ADDRTYPE.IPV6:
return u.formatIPv6(data.byte(16));
return u.formatIPv6(data.read(16));
case ADDRTYPE.DOMAIN:

@@ -103,0 +103,0 @@ return data.char(data.byte());

@@ -18,3 +18,3 @@ exports.toUInt16LE = function(value) {

exports.formatIPv4 = function(value) {
return value.join('.');
return Array.prototype.join.call(value, '.');
};

@@ -21,0 +21,0 @@

@@ -5,3 +5,3 @@ {

"author": "Alexandre Kirszenberg <a.kirszenberg@gmail.com>",
"version": "0.0.5",
"version": "0.0.6",

@@ -8,0 +8,0 @@ "repository": {

@@ -8,3 +8,3 @@ dispatch-proxy

For example, my residence provides me with a cabled and wireless internet access. Both are capped at 1.200kB/s download/upload speed, but they can simultaneously run at full speed. My mobile internet access also provides me with 400kB/s download/upload speed. Combine all these with `dispatch` and a threaded download manager and you get a 2.800kB/s download and upload speed limit, which is considerably better :)
For example, my residence provides me with a cabled and wireless internet access. Both are capped at 1,200kB/s download/upload speed, but they can simultaneously run at full speed. My mobile internet access also provides me with 400kB/s download/upload speed. Combine all these with `dispatch` and a threaded download manager and you get a 2,800kB/s download and upload speed limit, which is considerably better :)
Installation

@@ -11,0 +11,0 @@ ------------

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc