mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
16 lines
414 B
VB.net
16 lines
414 B
VB.net
Namespace Connection
|
|
Namespace Protocol
|
|
Public Class SSH2
|
|
Inherits Connection.Protocol.PuttyBase
|
|
|
|
Public Sub New()
|
|
Me.PuttyProtocol = Putty_Protocol.ssh
|
|
Me.PuttySSHVersion = Putty_SSHVersion.ssh2
|
|
End Sub
|
|
|
|
Public Enum Defaults
|
|
Port = 22
|
|
End Enum
|
|
End Class
|
|
End Namespace
|
|
End Namespace |