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.
|
- using System;
-
- namespace Shadowsocks.Model
- {
- [Serializable]
- public class ForwardProxyConfig
- {
- public const int PROXY_SOCKS5 = 0;
- public const int PROXY_HTTP = 1;
-
- public const int MaxProxyTimeoutSec = 10;
- private const int DefaultProxyTimeoutSec = 3;
-
- public bool useProxy;
- public int proxyType;
- public string proxyServer;
- public int proxyPort;
- public int proxyTimeout;
- public bool useAuth;
- public string authUser;
- public string authPwd;
-
- public ForwardProxyConfig()
- {
- useProxy = false;
- proxyType = PROXY_SOCKS5;
- proxyServer = "";
- proxyPort = 0;
- proxyTimeout = DefaultProxyTimeoutSec;
- useAuth = false;
- authUser = "";
- authPwd = "";
- }
-
- public void CheckConfig()
- {
- if (proxyType < PROXY_SOCKS5 || proxyType > PROXY_HTTP)
- {
- proxyType = PROXY_SOCKS5;
- }
- }
- }
- }
|