Browse Source

net_uv: add listenFD shim that throws when called

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

5
lib/net_uv.js

@ -680,6 +680,11 @@ Server.prototype._emitCloseIfDrained = function() {
}
};
// TODO: implement for compatibility with 0.4.x? Requires libuv API change.
Server.prototype.listenFD = function(fd, type) {
throw new Error('Not implemented');
};
// TODO: isIP should be moved to the DNS code. Putting it here now because
// this is what the legacy system did.

Loading…
Cancel
Save