Skip to content
This repository was archived by the owner on Jan 21, 2023. It is now read-only.

Commit d329716

Browse files
#4 Added telnet support.
1 parent 849a60c commit d329716

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/RemoteConnectionManager.Core/Connections/Protocol.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
public enum Protocol
44
{
55
Rdp,
6-
Ssh
6+
Ssh,
7+
Telnet
78
}
89
}

src/RemoteConnectionManager.ExternalProcess/PuTTYConnectionFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace RemoteConnectionManager.ExternalProcess
55
{
66
public class PuTTYConnectionFactory : IConnectionFactory
77
{
8-
public Protocol[] Protocols => new[] { Protocol.Ssh };
8+
public Protocol[] Protocols => new[] { Protocol.Ssh, Protocol.Telnet };
99

1010
public IConnection CreateConnection(ConnectionSettings connectionSettings, IntPtr topWindowHandle)
1111
{

0 commit comments

Comments
 (0)