mirror of
https://github.com/bolucat/Archive.git
synced 2025-11-01 20:33:10 +08:00
44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|