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

Commit

Permalink
#4 Added telnet support.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolayarhangelov committed Jul 26, 2018
1 parent 849a60c commit d329716
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/RemoteConnectionManager.Core/Connections/Protocol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
public enum Protocol
{
Rdp,
Ssh
Ssh,
Telnet
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace RemoteConnectionManager.ExternalProcess
{
public class PuTTYConnectionFactory : IConnectionFactory
{
public Protocol[] Protocols => new[] { Protocol.Ssh };
public Protocol[] Protocols => new[] { Protocol.Ssh, Protocol.Telnet };

public IConnection CreateConnection(ConnectionSettings connectionSettings, IntPtr topWindowHandle)
{
Expand Down

0 comments on commit d329716

Please sign in to comment.