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