mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
18 lines
320 B
C#
18 lines
320 B
C#
namespace mRemoteNG.Connection.Protocol.Http
|
|
{
|
|
public class ProtocolHTTPS : HTTPBase
|
|
{
|
|
|
|
public ProtocolHTTPS(RenderingEngine RenderingEngine) : base(RenderingEngine)
|
|
{
|
|
httpOrS = "https";
|
|
defaultPort = (int)Defaults.Port;
|
|
}
|
|
|
|
public enum Defaults
|
|
{
|
|
Port = 443
|
|
}
|
|
}
|
|
}
|