@ -862,9 +862,13 @@ Server.prototype.close = function() {
};
Server.prototype._emitCloseIfDrained = function() {
if (!this._handle && !this.connections) {
this.emit('close');
}
var self = this;
if (self._handle || self.connections) return;
process.nextTick(function() {
self.emit('close');
});
@ -34,6 +34,9 @@ server.on('close', function() {
server.listen(common.PORT, function() {
server.close();
server.once('close', function() {
server.listen(common.PORT + 1, function() {