property MaxOpenedConnections: integer; default 0;
Description
Additional connections will be dropped until any of the opened connections is closed.
The default value is 0 - the server will allow an unlimited number of open connections.
Note: The MaxOpenedConnections property is typically used to control the load on the server, for example, by setting its value as a multiple of processor cores:
Options.MaxOpenedConnections := Max(50, TThread.ProcessorCount * 10);
If you expect a large number of concurrent client connections, increase the ListenBacklog value accordingly.