ProxyTypes.cs 557 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Renci.SshNet
  6. {
  7. /// <summary>
  8. /// Specifies the type of proxy client will use to connect to server.
  9. /// </summary>
  10. public enum ProxyTypes
  11. {
  12. /// <summary>No proxy server.</summary>
  13. None,
  14. /// <summary>A SOCKS4 proxy server.</summary>
  15. Socks4,
  16. /// <summary>A SOCKS5 proxy server.</summary>
  17. Socks5,
  18. /// <summary>A HTTP proxy server.</summary>
  19. Http,
  20. }
  21. }