You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
448 B
C#

9 months ago
namespace Renci.SshNet
{
/// <summary>
/// Specifies the type of proxy client will use to connect to server.
/// </summary>
public enum ProxyTypes
{
/// <summary>No proxy server.</summary>
None,
/// <summary>A SOCKS4 proxy server.</summary>
Socks4,
/// <summary>A SOCKS5 proxy server.</summary>
Socks5,
/// <summary>A HTTP proxy server.</summary>
Http,
}
}