Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/_http_server.js')
-rw-r--r--lib/_http_server.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/_http_server.js b/lib/_http_server.js
index 2821db8f40c..a95fe1d21cc 100644
--- a/lib/_http_server.js
+++ b/lib/_http_server.js
@@ -263,11 +263,9 @@ function Server(requestListener) {
this.on('request', requestListener);
}
- /* eslint-disable max-len */
// Similar option to this. Too lazy to write my own docs.
// http://www.squid-cache.org/Doc/config/half_closed_clients/
// http://wiki.squid-cache.org/SquidFaq/InnerWorkings#What_is_a_half-closed_filedescriptor.3F
- /* eslint-enable max-len */
this.httpAllowHalfOpen = false;
this.on('connection', connectionListener);