Browse Source

net_uv: emit 'close' event in Server.prototype.close()

v0.7.4-release
Ben Noordhuis 14 years ago
parent
commit
8ddb334c2a
  1. 1
      lib/net_uv.js

1
lib/net_uv.js

@ -635,6 +635,7 @@ Server.prototype.close = function() {
this._handle.close();
this._handle = null;
}
this.emit('close');
};

Loading…
Cancel
Save