diff --git a/doc/api/net.md b/doc/api/net.md index e0858e314f4ae7..82d164018931be 100644 --- a/doc/api/net.md +++ b/doc/api/net.md @@ -281,6 +281,26 @@ added: v0.1.90 Emitted when the server has been bound after calling [`server.listen()`][]. +### Event: `'drop'` + + + +When the number of connections reaches the threshold of `server.maxConnections`, +the server will drop new connections and emit `'drop'` event instead. If it is a +TCP server, the arguments is as follow, otherwise return `undefined`. + +```json +{ + "localAddress": "::ffff:127.0.0.1", + "localPort": 61054, + "remoteAddress": "::ffff:127.0.0.1", + "remotePort": 61060, + "remoteFamily": "IPv6" +} +``` + ### `server.address()`