mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
16 lines
274 B
C#
16 lines
274 B
C#
namespace mRemoteNG.Connection.Protocol.RAW
|
|
{
|
|
public class RawProtocol : PuttyBase
|
|
{
|
|
public RawProtocol(ConnectionInfo connectionInfo)
|
|
: base(connectionInfo)
|
|
{
|
|
PuttyProtocol = Putty_Protocol.raw;
|
|
}
|
|
|
|
public enum Defaults
|
|
{
|
|
Port = 23
|
|
}
|
|
}
|
|
} |