mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
16 lines
287 B
C#
16 lines
287 B
C#
namespace mRemoteNG.Connection.Protocol.Rlogin
|
|
{
|
|
public class ProtocolRlogin : PuttyBase
|
|
{
|
|
public ProtocolRlogin(ConnectionInfo connectionInfo)
|
|
: base(connectionInfo)
|
|
{
|
|
PuttyProtocol = Putty_Protocol.rlogin;
|
|
}
|
|
|
|
public enum Defaults
|
|
{
|
|
Port = 513
|
|
}
|
|
}
|
|
} |