proxy-chain
Advanced tools
Comparing version 0.1.24 to 0.1.25
@@ -171,2 +171,4 @@ 'use strict'; | ||
if (this.srcResponse) this.srcResponse.end(); | ||
// Handler tunnel chain does not use srcResponse, but needs to close srcSocket | ||
else if (this.srcSocket) this.srcSocket.end(); | ||
} | ||
@@ -180,2 +182,4 @@ }, { | ||
if (this.srcResponse) this.srcResponse.end(); | ||
// Handler tunnel chain does not use srcResponse, but needs to close srcSocket | ||
else if (this.srcSocket) this.srcSocket.end(); | ||
} | ||
@@ -182,0 +186,0 @@ }, { |
@@ -0,1 +1,5 @@ | ||
0.1.25 / 2018-02-12 | ||
=================== | ||
- When connection is only through socket, close srcSocket when trgSocket ends | ||
0.1.24 / 2018-02-09 | ||
@@ -2,0 +6,0 @@ =================== |
{ | ||
"name": "proxy-chain", | ||
"version": "0.1.24", | ||
"version": "0.1.25", | ||
"description": "Node.js implementation of a proxy server (think Squid) with support for SSL, authentication and upstream proxy chaining.", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
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
85530
1293