aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDahlia Trimble2009-05-04 07:08:50 +0000
committerDahlia Trimble2009-05-04 07:08:50 +0000
commit8a8fe6552632d791932bf462c58249065f325bdc (patch)
treef449d98b6a2e9a95a7e87cc00e5dfe4a86e554cf
parentAdd a parameter that limits the max size of the outbound packet. Defaulted (diff)
downloadopensim-SC_OLD-8a8fe6552632d791932bf462c58249065f325bdc.zip
opensim-SC_OLD-8a8fe6552632d791932bf462c58249065f325bdc.tar.gz
opensim-SC_OLD-8a8fe6552632d791932bf462c58249065f325bdc.tar.bz2
opensim-SC_OLD-8a8fe6552632d791932bf462c58249065f325bdc.tar.xz
Thanks BlueWall for Mantis #3578 - adding Hypergrid connection to JSON Stats
-rw-r--r--OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs b/OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs
index 37f2c0b..9ecb9ff 100644
--- a/OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs
+++ b/OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs
@@ -227,6 +227,8 @@ namespace OpenSim.ApplicationPlugins.CreateCommsManager
227 227
228 m_httpServer.AddStreamHandler(new OpenSim.SimStatusHandler()); 228 m_httpServer.AddStreamHandler(new OpenSim.SimStatusHandler());
229 m_httpServer.AddStreamHandler(new OpenSim.XSimStatusHandler(m_openSim)); 229 m_httpServer.AddStreamHandler(new OpenSim.XSimStatusHandler(m_openSim));
230 if(m_openSim.userStatsURI != String.Empty )
231 m_httpServer.AddStreamHandler(new OpenSim.UXSimStatusHandler(m_openSim));
230 } 232 }
231 233
232 private void CreateGridInfoService() 234 private void CreateGridInfoService()