From f77d6bf3b5426145029bca004da5ba201ec00adf Mon Sep 17 00:00:00 2001 From: Zachary Boyd Date: Fri, 10 Aug 2018 00:53:43 -0400 Subject: [PATCH] fixes typo --- README.md | 2 +- package.json | 2 +- src/HTTPServer.js | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cc6f73e..a8eecc0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Tor Router -*Tor Router* is a simple SOCKS5 proxy server for distributing traffic across multiple instances of Tor. At startup Tor Router will run an arbitrary number of instances Tor an each request will be sent to a different instance in round-robin fashion. This can be used to increase anonymity, because each request will be sent on a different circut and will most likely use a different exit-node, and also to increase performance since outbound traffic is now split across several instances of Tor. +*Tor Router* is a simple SOCKS5 proxy server for distributing traffic across multiple instances of Tor. At startup Tor Router will run an arbitrary number of instances Tor an each request will be sent to a different instance in round-robin fashion. This can be used to increase anonymity, because each request will be sent on a different circuit and will most likely use a different exit-node, and also to increase performance since outbound traffic is now split across several instances of Tor. Tor Router also includes a DNS proxy server and a HTTP proxy as well, which like the SOCKS proxy will distribute traffic across multiple instances of Tor in round-robin fashion. The HTTP proxy server can be used to access Tor via an HTTP Proxy. diff --git a/package.json b/package.json index 6267e99..7f63d48 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tor-router", - "version": "3.4.1", + "version": "3.4.2", "main": "src/index.js", "repository": "git@github.com:znetstar/tor-router.git", "author": "Zachary Boyd ", diff --git a/src/HTTPServer.js b/src/HTTPServer.js index d24b299..1b9f490 100644 --- a/src/HTTPServer.js +++ b/src/HTTPServer.js @@ -38,7 +38,6 @@ class HTTPServer extends Server { headers: req.headers, agent: new SocksProxyAgent(`socks://127.0.0.1:${socks_port}`) }, (proxy_res) => { - d.add(proxy_res); proxy_res.on('data', (chunk) => { res.write(chunk); });