Browse Source

net_uv: sockets should be writable during connection

v0.7.4-release
Henry Rawas 14 years ago
committed by Ryan Dahl
parent
commit
a13506b48f
  1. 1
      lib/net_uv.js

1
lib/net_uv.js

@ -365,6 +365,7 @@ Socket.prototype.connect = function(port /* [host], [cb] */) {
timers.active(this);
self._connecting = true;
self.writable = true;
if (typeof host == 'string') {
debug("connect: find host " + host);

Loading…
Cancel
Save