Client - SetVersionHandler, OnSshVersion
[C]
__cdecl FlowSshC_Client_SetVersionHandler(
FlowSshC_Client* client,
FlowSshC_SshVersionHandler handler,
void* handlerData);
[C++]
[Client] virtual void OnSshVersion(std::wstring const& version);
[C#]
[ClientBase] public event SshVersionEventHandler OnSshVersion;
[C] Parameters
- client: FlowSshC_Client pointer.
- handler: A SshVersionHandler function.
- handlerData: An application-defined value to be passed to the handler. Optional.
[C++/.NET] Overrides and Events
- OnSshVersion: Informs you about the version string of the SSH server to which you are trying to connect.
Parameters:- version: Version string received from the SSH server.
Remarks
This handler is invoked while establishing a connection with the SSH server, at progress [ConnectStep]SshVersionString.