docs: remove server.pause

This functionality was removed when libuv landed in node. It is useless
and can be easily implemented in user-land.
pull/24503/head
Fedor Indutny 2012-02-21 20:42:15 +06:00
parent b9127eb0a5
commit 080ffb8b2c
1 changed files with 0 additions and 6 deletions

View File

@ -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