forked from svrjs/svrjs
Removed unused SVR.JS code
This commit is contained in:
parent
079ce3d974
commit
f4641cd1bb
1 changed files with 1 additions and 54 deletions
55
svr.js
55
svr.js
|
@ -2970,34 +2970,7 @@ if (!cluster.isPrimary) {
|
||||||
res.write(head + d + foot);
|
res.write(head + d + foot);
|
||||||
res.end();
|
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
|
// Server error calling method
|
||||||
function callServerError(errorCode, extName, stack, ch) {
|
function callServerError(errorCode, extName, stack, ch) {
|
||||||
if (typeof errorCode !== "number") {
|
if (typeof errorCode !== "number") {
|
||||||
|
@ -3332,32 +3305,6 @@ if (!cluster.isPrimary) {
|
||||||
} else {
|
} else {
|
||||||
vresCalled = true;
|
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) {
|
function responseEnd(d) {
|
||||||
if (d === undefined) d = fd;
|
if (d === undefined) d = fd;
|
||||||
|
|
Reference in a new issue