Renci.SshNet.Connection.IProtocolVersionExchange
interface IProtocolVersionExchange
Handles the SSH protocol version exchange.
namespace Renci.SshNet.Connection
{
internal interface IProtocolVersionExchange
{
SshIdentification Start(string clientVersion, Socket socket, TimeSpan timeout);
Task<SshIdentification> StartAsync(string clientVersion, Socket socket, CancellationToken cancellationToken);
}
}