fix(core): update

This commit is contained in:
Philipp Kunz 2023-01-06 13:00:10 +01:00
parent e51c2a88cc
commit f6e656361b
2 changed files with 3 additions and 3 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartproxy',
version: '3.0.55',
version: '3.0.56',
description: 'a proxy for handling high workloads of proxying'
}

View File

@ -260,12 +260,12 @@ JNj2Dr5H0XoLFFnvuvzcRbhlJ9J67JzR+7g=
}
wsIncoming.on("message", (message, isBinary) => {
console.log("client to upstream", message);
// console.log("client to upstream", message);
wsOutgoing.send(message, { binary: isBinary });
});
wsOutgoing.on("message", (message, isBinary) => {
console.log("upstream to client", message);
// console.log("upstream to client", message);
wsIncoming.send(message, { binary: isBinary });
});
wsIncoming.on("error", () => wsOutgoing.terminate());