mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-25 19:38:37 +08:00
19 lines
376 B
C#
19 lines
376 B
C#
namespace mRemoteNG.Connection.Protocol.Http
|
|
{
|
|
public class ProtocolHTTP : HTTPBase
|
|
{
|
|
|
|
public ProtocolHTTP(ConnectionInfo connectionInfo, RenderingEngine renderingEngine)
|
|
: base(connectionInfo, renderingEngine)
|
|
{
|
|
httpOrS = "http";
|
|
defaultPort = (int)Defaults.Port;
|
|
}
|
|
|
|
public enum Defaults
|
|
{
|
|
Port = 80
|
|
}
|
|
}
|
|
}
|