fixes typo

This commit is contained in:
Zachary Boyd 2018-08-10 00:53:43 -04:00
parent a8b68ef5ec
commit f77d6bf3b5
3 changed files with 2 additions and 3 deletions

View file

@ -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.

View file

@ -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 <zachary@zacharyboyd.nyc>",

View file

@ -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);
});