aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie2012-09-30 15:49:51 +0100
committerMelanie2012-09-30 15:49:51 +0100
commitf8a4b61954707a0adb7a20f7a1b530631c15aa79 (patch)
tree4aafa46790530519c11ec74c538b58fc93707c85
parentRevert "Added request.Proxy=null everywhere, as discussed in http://stackover... (diff)
downloadopensim-SC_OLD-f8a4b61954707a0adb7a20f7a1b530631c15aa79.zip
opensim-SC_OLD-f8a4b61954707a0adb7a20f7a1b530631c15aa79.tar.gz
opensim-SC_OLD-f8a4b61954707a0adb7a20f7a1b530631c15aa79.tar.bz2
opensim-SC_OLD-f8a4b61954707a0adb7a20f7a1b530631c15aa79.tar.xz
Allow up to 12 simultaneous connections to a given endpoint rather than 2
-rw-r--r--OpenSim/Region/Application/Application.cs1
1 files changed, 1 insertions, 0 deletions
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
73 AppDomain.CurrentDomain.UnhandledException += 73 AppDomain.CurrentDomain.UnhandledException +=
74 new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); 74 new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
75 75
76 ServicePointManager.DefaultConnectionLimit = 12;
76 77
77 // Add the arguments supplied when running the application to the configuration 78 // Add the arguments supplied when running the application to the configuration
78 ArgvConfigSource configSource = new ArgvConfigSource(args); 79 ArgvConfigSource configSource = new ArgvConfigSource(args);