diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-02-07 21:11:43 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-02-07 21:11:43 -0800 |
commit | 448e0f43940c1616d94353bd2323877b4814cec2 (patch) | |
tree | b59ccb67298b6c470d8101be0fe6c0d71a861797 /lib/https.js | |
parent | 61af4207dae4e43aa16f17c77b34391bb1e3da5b (diff) | |
download | node-new-448e0f43940c1616d94353bd2323877b4814cec2.tar.gz |
tls fixes
Diffstat (limited to 'lib/https.js')
-rw-r--r-- | lib/https.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/https.js b/lib/https.js index b37211b2ac..141eff7791 100644 --- a/lib/https.js +++ b/lib/https.js @@ -7,6 +7,8 @@ function Server(opts, requestListener) { if (!(this instanceof Server)) return new Server(opts, requestListener); tls.Server.call(this, opts, http._connectionListener); + this.httpAllowHalfOpen = false; + if (requestListener) { this.addListener('request', requestListener); } |