-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
+Socket.prototype.setTimeout = function (timeout, callback) {
+ // TODO: implement full Socket.setTimeout semantics
+ // http://nodejs.org/api/net.html#net_socket_settimeout_timeout_callback
+
+ if (timeout !== 0) {
+ throw new Error('Not implemented. Only timeout value of 0 is currently accepted.')
+ }
+};
Metadata
Metadata
Assignees
Labels
No labels