mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
fix SocksWebProxy race condition
This commit is contained in:
@@ -21,6 +21,7 @@ namespace Jackett.Utils.Clients
|
||||
public class HttpWebClient : WebClient
|
||||
{
|
||||
static protected Dictionary<string, ICollection<string>> trustedCertificates = new Dictionary<string, ICollection<string>>();
|
||||
static protected SocksWebProxy socksWebProxy;
|
||||
|
||||
public HttpWebClient(IProcessService p, Logger l, IConfigurationService c, ServerConfig sc)
|
||||
: base(p: p,
|
||||
@@ -92,14 +93,9 @@ namespace Jackett.Utils.Clients
|
||||
if (!string.IsNullOrWhiteSpace(proxyUrl))
|
||||
{
|
||||
useProxy = true;
|
||||
NetworkCredential creds = null;
|
||||
if (!serverConfig.ProxyIsAnonymous)
|
||||
{
|
||||
var username = serverConfig.ProxyUsername;
|
||||
var password = serverConfig.ProxyPassword;
|
||||
creds = new NetworkCredential(username, password);
|
||||
}
|
||||
if (serverConfig.ProxyType != ProxyType.Http)
|
||||
{
|
||||
if (socksWebProxy == null)
|
||||
{
|
||||
var addresses = await Dns.GetHostAddressesAsync(serverConfig.ProxyUrl);
|
||||
var socksConfig = new ProxyConfig
|
||||
@@ -115,10 +111,19 @@ namespace Jackett.Utils.Clients
|
||||
{
|
||||
socksConfig.SocksPort = serverConfig.ProxyPort.Value;
|
||||
}
|
||||
proxyServer = new SocksWebProxy(socksConfig, false);
|
||||
socksWebProxy = new SocksWebProxy(socksConfig, false);
|
||||
}
|
||||
proxyServer = socksWebProxy;
|
||||
}
|
||||
else
|
||||
{
|
||||
NetworkCredential creds = null;
|
||||
if (!serverConfig.ProxyIsAnonymous)
|
||||
{
|
||||
var username = serverConfig.ProxyUsername;
|
||||
var password = serverConfig.ProxyPassword;
|
||||
creds = new NetworkCredential(username, password);
|
||||
}
|
||||
proxyServer = new WebProxy(proxyUrl)
|
||||
{
|
||||
BypassProxyOnLocal = false,
|
||||
|
Reference in New Issue
Block a user