mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
16 lines
358 B
C#
16 lines
358 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
|
|
}
|
|
}
|
|
} |