1
0
Fork 0
forked from svrjs/svrjs

Removed unused SVR.JS code

This commit is contained in:
Dorian Niemiec 2023-09-11 21:51:03 +02:00
parent 079ce3d974
commit f4641cd1bb

55
svr.js
View file

@ -2970,34 +2970,7 @@ if (!cluster.isPrimary) {
res.write(head + d + foot);
res.end();
}
/*
UNUSED CODE:
// function responseEndGzip(d) {
// if (d === undefined) d = fd;
// zlib.gzip(head + d + foot, function (err, buff) {
// if (err) {
// throw err;
// } else {
// res.write(buff);
// res.end();
// }
// });
// }
//
// function responseEndDeflate(d) {
// if (d === undefined) d = fd;
// zlib.deflateRaw(head + d + foot, function (err, buff) {
// if (err) {
// throw err;
// } else {
// res.write(buff);
// res.end();
// }
// });
// }
*/
// Server error calling method
function callServerError(errorCode, extName, stack, ch) {
if (typeof errorCode !== "number") {
@ -3332,32 +3305,6 @@ if (!cluster.isPrimary) {
} else {
vresCalled = true;
}
/*
UNUSED CODE
// function responseEndGzip(d) {
// if (d === undefined) d = fd;
// zlib.gzip(head + d + foot, function (err, buff) {
// if (err) {
// throw err;
// } else {
// res.write(buff);
// res.end();
// }
// });
// }
//
// function responseEndDeflate(d) {
// if (d === undefined) d = fd;
// zlib.deflateRaw(head + d + foot, function (err, buff) {
// if (err) {
// throw err;
// } else {
// res.write(buff);
// res.end();
// }
// });
// }
*/
function responseEnd(d) {
if (d === undefined) d = fd;