Set connection limit to 20 for all servers.

This commit is contained in:
Melanie Thielker
2014-10-13 23:22:18 +02:00
parent 47fdd7f91a
commit c19183932e

View File

@@ -53,6 +53,10 @@ namespace OpenSim.Server
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);
string registryLocation;