mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
* removed unneeded Imports * renamed namespace to mRemoteNG * changed Logfile path to %USERPROFILE%\AppData\Local\mRemoteNG\mRemoteNG.log * fixed mRemoteNG.exe.config * added more ignores to .gitignore
23 lines
568 B
VB.net
23 lines
568 B
VB.net
Namespace Connection
|
|
Namespace Protocol
|
|
Public Class HTTP
|
|
Inherits Connection.Protocol.HTTPBase
|
|
|
|
Public Sub New(ByVal RenderingEngine As RenderingEngine)
|
|
MyBase.New(RenderingEngine)
|
|
End Sub
|
|
|
|
Public Overrides Sub NewExtended()
|
|
MyBase.NewExtended()
|
|
|
|
httpOrS = "http"
|
|
defaultPort = Defaults.Port
|
|
End Sub
|
|
|
|
Public Enum Defaults
|
|
Port = 80
|
|
End Enum
|
|
End Class
|
|
End Namespace
|
|
End Namespace
|