Files
mRemoteNG/mRemoteV1/Connection/Protocol/Http/Connection.Protocol.HTTPS.cs

23 lines
369 B
C#

namespace mRemoteNG.Connection.Protocol.Http
{
public class ProtocolHTTPS : HTTPBase
{
public ProtocolHTTPS(RenderingEngine RenderingEngine) : base(RenderingEngine)
{
}
public override void NewExtended()
{
base.NewExtended();
httpOrS = "https";
defaultPort = (int)Defaults.Port;
}
public enum Defaults
{
Port = 443
}
}
}