mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
24 lines
371 B
C#
24 lines
371 B
C#
namespace mRemoteNG.Connection.Protocol.Http
|
|
{
|
|
public class ProtocolHTTP : HTTPBase
|
|
{
|
|
|
|
public ProtocolHTTP(RenderingEngine RenderingEngine) : base(RenderingEngine)
|
|
{
|
|
}
|
|
|
|
public override void NewExtended()
|
|
{
|
|
base.NewExtended();
|
|
|
|
httpOrS = "http";
|
|
defaultPort = (int)Defaults.Port;
|
|
}
|
|
|
|
public enum Defaults
|
|
{
|
|
Port = 80
|
|
}
|
|
}
|
|
}
|