-
-
Notifications
You must be signed in to change notification settings - Fork 4
SSH.TCPListener.MaxConnections
Andrew Lambert edited this page Dec 18, 2022
·
7 revisions
SSH.TCPListener.MaxConnections
Dim MaxConnections As Integer
This value is the maximum number of pending connections that the server will enqueue before rejecting further attempts. A "pending connection" is one that has been received by the server but not yet accepted by the client (your app). Call the Poll() method to accept pending connections and raise the ConnectionReceived() event. Once a connection is passed to ConnectionReceived()
it is no longer counted against MaxConnections
.
This value cannot be changed while listening.
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2018-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.