property MaxAcceptedConnections: integer; default 0;
Description
Specifies the maximum number of connections that the server can accept. When this number is exceeded, the thread for listening will be closed.
For example, if the server allows only one connection from the client (MaxAcceptedConnections is set to 1), it will stop listening on port once a connection has been established.
The default value is 0 — the server will accept an unlimited number of connections.
See Also