Browse Source

net_uv: Export Socket and Stream

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
f6ce86af04
  1. 4
      lib/net_uv.js

4
lib/net_uv.js

@ -54,6 +54,10 @@ function Socket(options) {
util.inherits(Socket, stream.Stream);
exports.Socket = Socket;
exports.Stream = Socket; // Legacy naming.
Socket.prototype.setTimeout = function(msecs, callback) {
if (msecs > 0) {
timers.enroll(this, msecs);

Loading…
Cancel
Save