Skip to content

SSH.TCPListener.MaxConnections

Andrew Lambert edited this page Dec 18, 2022 · 7 revisions

SSH.TCPListener.MaxConnections

Property declaration

 Dim MaxConnections As Integer

Remarks

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.

Clone this wiki locally