mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
20 lines
323 B
C#
20 lines
323 B
C#
|
|
|
|
namespace mRemoteNG.Connection.Protocol.SSH
|
|
{
|
|
public class ProtocolSSH1 : PuttyBase
|
|
{
|
|
public ProtocolSSH1(ConnectionInfo connectionInfo)
|
|
: base(connectionInfo)
|
|
{
|
|
PuttyProtocol = Putty_Protocol.ssh;
|
|
PuttySSHVersion = Putty_SSHVersion.ssh1;
|
|
}
|
|
|
|
public enum Defaults
|
|
{
|
|
Port = 22
|
|
}
|
|
}
|
|
}
|