aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Server/ServerMain.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Server/ServerMain.cs b/OpenSim/Server/ServerMain.cs
index 65e9287..a05effe 100644
--- a/OpenSim/Server/ServerMain.cs
+++ b/OpenSim/Server/ServerMain.cs
@@ -53,6 +53,10 @@ namespace OpenSim.Server
53 53
54 public static int Main(string[] args) 54 public static int Main(string[] args)
55 { 55 {
56 // Make sure we don't get outbound connections queueing
57 ServicePointManager.DefaultConnectionLimit = 50;
58 ServicePointManager.UseNagleAlgorithm = false;
59
56 m_Server = new HttpServerBase("R.O.B.U.S.T.", args); 60 m_Server = new HttpServerBase("R.O.B.U.S.T.", args);
57 61
58 string registryLocation; 62 string registryLocation;