mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
18 lines
321 B
C#
18 lines
321 B
C#
namespace mRemoteNG.Connection.Protocol.SSH
|
|
{
|
|
public class ProtocolSSH2 : PuttyBase
|
|
{
|
|
public ProtocolSSH2(ConnectionInfo connectionInfo)
|
|
: base(connectionInfo)
|
|
{
|
|
PuttyProtocol = Putty_Protocol.ssh;
|
|
PuttySSHVersion = Putty_SSHVersion.ssh2;
|
|
}
|
|
|
|
public enum Defaults
|
|
{
|
|
Port = 22
|
|
}
|
|
}
|
|
}
|