mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
23 lines
369 B
C#
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
|
|
}
|
|
}
|
|
}
|