mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-25 19:38:37 +08:00
20 lines
274 B
C#
20 lines
274 B
C#
|
|
|
|
namespace mRemoteNG.Connection.Protocol.SSH
|
|
{
|
|
public class ProtocolSSH1 : PuttyBase
|
|
{
|
|
|
|
public ProtocolSSH1()
|
|
{
|
|
this.PuttyProtocol = Putty_Protocol.ssh;
|
|
this.PuttySSHVersion = Putty_SSHVersion.ssh1;
|
|
}
|
|
|
|
public enum Defaults
|
|
{
|
|
Port = 22
|
|
}
|
|
}
|
|
}
|