Compare commits

...

2 Commits

Author SHA1 Message Date
0f82d63f5c 2.0.7 2021-02-03 00:13:30 +00:00
b5fcdadd3d fix(core): update 2021-02-03 00:13:29 +00:00
3 changed files with 4 additions and 2 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartproxy", "name": "@pushrocks/smartproxy",
"version": "2.0.6", "version": "2.0.7",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartproxy", "name": "@pushrocks/smartproxy",
"version": "2.0.6", "version": "2.0.7",
"private": false, "private": false,
"description": "a proxy for handling high workloads of proxying", "description": "a proxy for handling high workloads of proxying",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -25,6 +25,8 @@ const portProxyCalls = {
to.removeAllListeners(); to.removeAllListeners();
from.unpipe(); from.unpipe();
to.unpipe(); to.unpipe();
from.destroy();
to.destroy();
} }
netServer = net netServer = net
.createServer((from) => { .createServer((from) => {