From f8a4b61954707a0adb7a20f7a1b530631c15aa79 Mon Sep 17 00:00:00 2001 From: Melanie Date: Sun, 30 Sep 2012 15:49:51 +0100 Subject: Allow up to 12 simultaneous connections to a given endpoint rather than 2 --- OpenSim/Region/Application/Application.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'OpenSim/Region') diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index ebfebc4..a5a5201 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs @@ -73,6 +73,7 @@ namespace OpenSim AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); + ServicePointManager.DefaultConnectionLimit = 12; // Add the arguments supplied when running the application to the configuration ArgvConfigSource configSource = new ArgvConfigSource(args); -- cgit v1.1