From 080ffb8b2c598a75ee04e00378cbe65fbcf24744 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Tue, 21 Feb 2012 20:42:15 +0600 Subject: [PATCH] docs: remove server.pause This functionality was removed when libuv landed in node. It is useless and can be easily implemented in user-land. --- doc/api/net.markdown | 6 ------ 1 file changed, 6 deletions(-) diff --git a/doc/api/net.markdown b/doc/api/net.markdown index 5052271..bde5cee 100644 --- a/doc/api/net.markdown +++ b/doc/api/net.markdown @@ -156,12 +156,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([cb]) Stops the server from accepting new connections. This function is -- 2.7.4