diff options
author | Johan Berntsson | 2009-04-15 04:07:41 +0000 |
---|---|---|
committer | Johan Berntsson | 2009-04-15 04:07:41 +0000 |
commit | 068127bf57ca0c291daa6a3f2319fe5628fde741 (patch) | |
tree | 144e38939d3c89e92de7955540569b19d3ee5947 /OpenSim/Region/Framework/Scenes | |
parent | One less vulnerability in the HG: detecting foreign users trying to come in w... (diff) | |
download | opensim-SC_OLD-068127bf57ca0c291daa6a3f2319fe5628fde741.zip opensim-SC_OLD-068127bf57ca0c291daa6a3f2319fe5628fde741.tar.gz opensim-SC_OLD-068127bf57ca0c291daa6a3f2319fe5628fde741.tar.bz2 opensim-SC_OLD-068127bf57ca0c291daa6a3f2319fe5628fde741.tar.xz |
Renamed splitID in Scene and added comments on usage
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 5ffa64c..2714836 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -56,7 +56,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
56 | { | 56 | { |
57 | public delegate void SynchronizeSceneHandler(Scene scene); | 57 | public delegate void SynchronizeSceneHandler(Scene scene); |
58 | public SynchronizeSceneHandler SynchronizeScene = null; | 58 | public SynchronizeSceneHandler SynchronizeScene = null; |
59 | public int splitID = 0; | 59 | |
60 | /* Used by the loadbalancer plugin on GForge */ | ||
61 | protected int m_splitRegionID = 0; | ||
62 | public int SplitRegionID | ||
63 | { | ||
64 | get { return m_splitRegionID; } | ||
65 | set { m_splitRegionID = value; } | ||
66 | } | ||
60 | 67 | ||
61 | private const long DEFAULT_MIN_TIME_FOR_PERSISTENCE = 60L; | 68 | private const long DEFAULT_MIN_TIME_FOR_PERSISTENCE = 60L; |
62 | private const long DEFAULT_MAX_TIME_FOR_PERSISTENCE = 600L; | 69 | private const long DEFAULT_MAX_TIME_FOR_PERSISTENCE = 600L; |