Files
mRemoteNG/mRemoteV1/Connection/Connection.Protocol.HTTP.vb
Andreas Rehm e08c88db5f Refactoring and even more translations
* 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
2010-05-16 19:30:27 +02:00

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