Browse Source

Updated https support

v0.7.4-release
Rhys Jones 15 years ago
parent
commit
fbad5dc062
  1. 6
      lib/net.js

6
lib/net.js

@ -303,7 +303,8 @@ function initStream (self) {
}
if (secureBytesRead === null && !self.server) {
// Client needs to write as part of handshake
this._writeWatcher.start();
self._writeWatcher.start();
return;
}
} else {
bytesRead = read(self.fd,
@ -312,7 +313,6 @@ function initStream (self) {
pool.length - pool.used);
}
} catch (e) {
if (this.forceClose) this.forceClose(e);
self.destroy(e);
return;
}
@ -523,7 +523,7 @@ Stream.prototype._writeOut = function (data, encoding) {
if (this.secure) return false;
else throw new Error('Stream is not writable');
}
if (data.length == 0) return true;
if (!this.secure && data.length == 0) return true;
var buffer, off, len;
var bytesWritten, charsWritten;

Loading…
Cancel
Save