Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
208790cfcf | |||
5978bbaf66 | |||
1c47eafe5f | |||
69e3a71354 | |||
21e92bf0c1 | |||
d732e6e7aa |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@pushrocks/smartproxy",
|
||||
"version": "3.0.15",
|
||||
"version": "3.0.18",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@pushrocks/smartproxy",
|
||||
"version": "3.0.15",
|
||||
"version": "3.0.18",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@pushrocks/lik": "^6.0.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pushrocks/smartproxy",
|
||||
"version": "3.0.15",
|
||||
"version": "3.0.18",
|
||||
"private": false,
|
||||
"description": "a proxy for handling high workloads of proxying",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@pushrocks/smartproxy',
|
||||
version: '3.0.15',
|
||||
version: '3.0.18',
|
||||
description: 'a proxy for handling high workloads of proxying'
|
||||
}
|
||||
|
@ -187,12 +187,22 @@ JNj2Dr5H0XoLFFnvuvzcRbhlJ9J67JzR+7g=
|
||||
},
|
||||
true, // lets make this streaming
|
||||
(request) => {
|
||||
req.setTimeout(60000);
|
||||
req.on('data', (data) => {
|
||||
request.write(data);
|
||||
});
|
||||
req.on('end', (data) => {
|
||||
request.end();
|
||||
});
|
||||
req.on('error', () => {
|
||||
request.end();
|
||||
});
|
||||
req.on('close', () => {
|
||||
request.end();
|
||||
});
|
||||
req.on('timeout', () => {
|
||||
request.end();
|
||||
})
|
||||
}
|
||||
);
|
||||
res.statusCode = response.statusCode;
|
||||
@ -209,6 +219,15 @@ JNj2Dr5H0XoLFFnvuvzcRbhlJ9J67JzR+7g=
|
||||
response.on('end', () => {
|
||||
res.end();
|
||||
});
|
||||
response.on('error', () => {
|
||||
res.end();
|
||||
});
|
||||
response.on('close', () => {
|
||||
res.end();
|
||||
});
|
||||
response.on('timeout', () => {
|
||||
res.end();
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
@ -237,12 +256,12 @@ JNj2Dr5H0XoLFFnvuvzcRbhlJ9J67JzR+7g=
|
||||
|
||||
// handle closing
|
||||
const cleanUp = () => {
|
||||
ws.removeAllListeners();
|
||||
ws.close();
|
||||
ws.terminate();
|
||||
wsc.removeAllListeners();
|
||||
ws.removeAllListeners();
|
||||
wsc.close();
|
||||
wsc.terminate();
|
||||
wsc.removeAllListeners();
|
||||
};
|
||||
|
||||
ws.on('close', (message) => {
|
||||
@ -256,7 +275,7 @@ JNj2Dr5H0XoLFFnvuvzcRbhlJ9J67JzR+7g=
|
||||
this.httpsServer.headersTimeout = 65000;
|
||||
|
||||
this.httpsServer.on('connection', (connection: plugins.net.Socket) => {
|
||||
connection.setTimeout(10000);
|
||||
connection.setTimeout(61000);
|
||||
let destroyed = false;
|
||||
this.socketMap.add(connection);
|
||||
console.log(`added connection. now ${this.socketMap.getArray().length} sockets connected.`);
|
||||
|
Reference in New Issue
Block a user