aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-11 17:02:46 +0000
committerJustin Clarke Casey2008-11-11 17:02:46 +0000
commit97816f8c901bf56e3b29bdbd5f8e320de352f45f (patch)
tree30fdd6962a11fda115da1b2cb8340a4d64b763b1 /OpenSim/Region/Environment/Scenes/Scene.cs
parentMantis#2604. Thank you kindly, Diva for a patch that: (diff)
downloadopensim-SC_OLD-97816f8c901bf56e3b29bdbd5f8e320de352f45f.zip
opensim-SC_OLD-97816f8c901bf56e3b29bdbd5f8e320de352f45f.tar.gz
opensim-SC_OLD-97816f8c901bf56e3b29bdbd5f8e320de352f45f.tar.bz2
opensim-SC_OLD-97816f8c901bf56e3b29bdbd5f8e320de352f45f.tar.xz
* Implement basic region filtering as described in https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html
* This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 68fac59..fd4eb58 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -319,6 +319,7 @@ namespace OpenSim.Region.Environment.Scenes
319 m_statsReporter.SetObjectCapacity(objectCapacity); 319 m_statsReporter.SetObjectCapacity(objectCapacity);
320 320
321 m_simulatorVersion = simulatorVersion 321 m_simulatorVersion = simulatorVersion
322 + " (OS " + Util.GetOperatingSystemInformation() + ")"
322 + " ChilTasks:" + m_seeIntoRegionFromNeighbor.ToString() 323 + " ChilTasks:" + m_seeIntoRegionFromNeighbor.ToString()
323 + " PhysPrim:" + m_physicalPrim.ToString(); 324 + " PhysPrim:" + m_physicalPrim.ToString();
324 325