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

ProxyConfig.cs 519 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace Shadowsocks.Model
  3. {
  4. [Serializable]
  5. public class ProxyConfig
  6. {
  7. public const int PROXY_SOCKS5 = 0;
  8. public const int PROXY_HTTP = 1;
  9. public bool useProxy;
  10. public int proxyType;
  11. public string proxyServer;
  12. public int proxyPort;
  13. public ProxyConfig()
  14. {
  15. useProxy = false;
  16. proxyType = PROXY_SOCKS5;
  17. proxyServer = "";
  18. proxyPort = 0;
  19. }
  20. }
  21. }