mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-24 18:38:44 +08:00
15 lines
360 B
VB.net
15 lines
360 B
VB.net
Namespace Connection
|
|
Namespace Protocol
|
|
Public Class Telnet
|
|
Inherits Connection.Protocol.PuttyBase
|
|
|
|
Public Sub New()
|
|
Me.PuttyProtocol = Putty_Protocol.telnet
|
|
End Sub
|
|
|
|
Public Enum Defaults
|
|
Port = 23
|
|
End Enum
|
|
End Class
|
|
End Namespace
|
|
End Namespace |