dispatch-proxy
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -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 @@ ------------ |
22680