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