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