IProtocolVersionExchange
interface IProtocolVersionExchange
Handles the SSH protocol version exchange.
using System;
using System.Net.Sockets;
namespace Renci.SshNet.Connection
{
internal interface IProtocolVersionExchange
{
SshIdentification Start(string clientVersion, Socket socket, TimeSpan timeout);
}
}