diff options
author | Melanie | 2012-09-30 15:49:51 +0100 |
---|---|---|
committer | Melanie | 2012-09-30 15:49:51 +0100 |
commit | f8a4b61954707a0adb7a20f7a1b530631c15aa79 (patch) | |
tree | 4aafa46790530519c11ec74c538b58fc93707c85 /OpenSim/Region | |
parent | Revert "Added request.Proxy=null everywhere, as discussed in http://stackover... (diff) | |
download | opensim-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
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/Application.cs | 1 |
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); |