Set connection limit to 20 for all servers.
parent
47fdd7f91a
commit
c19183932e
|
@ -53,6 +53,10 @@ namespace OpenSim.Server
|
||||||
|
|
||||||
public static int Main(string[] args)
|
public static int Main(string[] args)
|
||||||
{
|
{
|
||||||
|
// Make sure we don't get outbound connections queueing
|
||||||
|
ServicePointManager.DefaultConnectionLimit = 50;
|
||||||
|
ServicePointManager.UseNagleAlgorithm = false;
|
||||||
|
|
||||||
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