aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs
diff options
context:
space:
mode:
authorDiva Canto2009-09-25 08:39:09 -0700
committerDiva Canto2009-09-25 08:39:09 -0700
commit902279f0fda655c8542b3e7ff7a8769bb3aff1a2 (patch)
treed75534acece27667396865df0f491ff9cbc1690c /OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs
parentBetter error handling on the client-side grid connector. (diff)
downloadopensim-SC_OLD-902279f0fda655c8542b3e7ff7a8769bb3aff1a2.zip
opensim-SC_OLD-902279f0fda655c8542b3e7ff7a8769bb3aff1a2.tar.gz
opensim-SC_OLD-902279f0fda655c8542b3e7ff7a8769bb3aff1a2.tar.bz2
opensim-SC_OLD-902279f0fda655c8542b3e7ff7a8769bb3aff1a2.tar.xz
Moved the property RegionLoginsEnabled from GridComms to the Scene -- not the scene itself but SceneCommunicationService, for now. Beginning to clear the code from using Region.Communications. grid stuff.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs
index 204c319..56cd87d 100644
--- a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs
@@ -63,6 +63,13 @@ namespace OpenSim.Region.Framework.Scenes
63 63
64 protected List<UUID> m_agentsInTransit; 64 protected List<UUID> m_agentsInTransit;
65 65
66 public bool RegionLoginsEnabled
67 {
68 get { return m_regionLoginsEnabled; }
69 set { m_regionLoginsEnabled = value; }
70 }
71 private bool m_regionLoginsEnabled = false;
72
66 /// <summary> 73 /// <summary>
67 /// An agent is crossing into this region 74 /// An agent is crossing into this region
68 /// </summary> 75 /// </summary>