no all mono versions know DnsRefreshTimeout
parent
c080d9fa23
commit
7b80bcc57a
|
@ -79,7 +79,8 @@ namespace OpenSim
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ServicePointManager.DefaultConnectionLimit = 12;
|
ServicePointManager.DefaultConnectionLimit = 12;
|
||||||
ServicePointManager.DnsRefreshTimeout = 120000; // just is case crazy mono decides to have it infinity
|
try { ServicePointManager.DnsRefreshTimeout = 120000; } // just is case crazy some mono decides to have it infinity
|
||||||
|
catch { }
|
||||||
}
|
}
|
||||||
|
|
||||||
ServicePointManager.Expect100Continue = false;
|
ServicePointManager.Expect100Continue = false;
|
||||||
|
|
|
@ -55,10 +55,12 @@ namespace OpenSim.Server
|
||||||
public static int Main(string[] args)
|
public static int Main(string[] args)
|
||||||
{
|
{
|
||||||
ServicePointManager.DefaultConnectionLimit = 64;
|
ServicePointManager.DefaultConnectionLimit = 64;
|
||||||
ServicePointManager.DnsRefreshTimeout = 120000; // just is case mono decides to have it infinity
|
|
||||||
ServicePointManager.Expect100Continue = false;
|
ServicePointManager.Expect100Continue = false;
|
||||||
ServicePointManager.UseNagleAlgorithm = false;
|
ServicePointManager.UseNagleAlgorithm = false;
|
||||||
|
|
||||||
|
try { ServicePointManager.DnsRefreshTimeout = 120000; } // just is case some mono decides to have it infinity
|
||||||
|
catch { }
|
||||||
|
|
||||||
m_Server = new HttpServerBase("R.O.B.U.S.T.", args);
|
m_Server = new HttpServerBase("R.O.B.U.S.T.", args);
|
||||||
|
|
||||||
string registryLocation;
|
string registryLocation;
|
||||||
|
|
Loading…
Reference in New Issue