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