aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs21
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneBase.cs12
2 files changed, 31 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index ba8a356..957c75c 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1867,8 +1867,25 @@ namespace OpenSim.Region.Environment.Scenes
1867 /// <param name="agentId"></param> 1867 /// <param name="agentId"></param>
1868 /// <param name="capsObjectPath"></param> 1868 /// <param name="capsObjectPath"></param>
1869 public void AddCapsHandler(LLUUID agentId) 1869 public void AddCapsHandler(LLUUID agentId)
1870 { 1870 {
1871 String capsObjectPath = GetCapsPath(agentId); 1871 // Here we clear out old Caps handlers for the agent
1872 // this is required because we potentially have multiple simulators in an instance nearby.
1873 Caps oldcap = null;
1874 lock (m_capsHandlers)
1875 {
1876 if (m_capsHandlers.ContainsKey(agentId))
1877 oldcap = m_capsHandlers[agentId];
1878 }
1879 if (oldcap != null)
1880 {
1881 oldcap.DeregisterHandlers();
1882 }
1883
1884 // Generate a new base caps path LLUUID.Random().ToString() instead of agentId.ToString()
1885 // If the caps paths are not different for each region, the client and sim will do weird
1886 // things like send the request to a region the agent is no longer in.
1887
1888 String capsObjectPath = GetNewCapsPath(agentId);
1872 1889
1873 m_log.DebugFormat( 1890 m_log.DebugFormat(
1874 "[CAPS]: Setting up CAPS handler for root agent {0} in {1}", 1891 "[CAPS]: Setting up CAPS handler for root agent {0} in {1}",
diff --git a/OpenSim/Region/Environment/Scenes/SceneBase.cs b/OpenSim/Region/Environment/Scenes/SceneBase.cs
index 5551173..f863bff 100644
--- a/OpenSim/Region/Environment/Scenes/SceneBase.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneBase.cs
@@ -214,5 +214,17 @@ namespace OpenSim.Region.Environment.Scenes
214 214
215 return null; 215 return null;
216 } 216 }
217 public string GetNewCapsPath(LLUUID agentID)
218 {
219 if (capsPaths.ContainsKey(agentID))
220 {
221 capsPaths[agentID] = LLUUID.Random().ToString();
222 }
223 else
224 {
225 capsPaths.Add(agentID, LLUUID.Random().ToString());
226 }
227 return GetCapsPath(agentID);
228 }
217 } 229 }
218} 230}