From: Fedor Indutny Date: Tue, 21 Feb 2012 14:42:15 +0000 (+0600) Subject: docs: remove server.pause X-Git-Tag: v0.6.12~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c6019b8b4e4379af883b7bf1b64f242f33b62361;p=platform%2Fupstream%2Fnodejs.git docs: remove server.pause This functionality was removed when libuv landed in node. It is useless and can be easily implemented in user-land. --- diff --git a/doc/api/net.markdown b/doc/api/net.markdown index 7b844b5..49cf5b0 100644 --- a/doc/api/net.markdown +++ b/doc/api/net.markdown @@ -136,12 +136,6 @@ This function is asynchronous. When the server has been bound, the last parameter `listeningListener` will be added as an listener for the ['listening'](#event_listening_) event. -#### server.pause(msecs) - -Stop accepting connections for the given number of milliseconds (default is -one second). This could be useful for throttling new connections against -DoS attacks or other oversubscription. - #### server.close() Stops the server from accepting new connections. This function is