diff options
author | MW | 2007-06-22 22:21:08 +0000 |
---|---|---|
committer | MW | 2007-06-22 22:21:08 +0000 |
commit | d7121a422a334f20e96d09251cf7382164b590db (patch) | |
tree | 64ebfea926bc57569963bd1a8adc16e71c942ab1 /OpenSim/OpenSim.LocalCommunications | |
parent | Imported Share folder from trunk (diff) | |
download | opensim-SC_OLD-d7121a422a334f20e96d09251cf7382164b590db.zip opensim-SC_OLD-d7121a422a334f20e96d09251cf7382164b590db.tar.gz opensim-SC_OLD-d7121a422a334f20e96d09251cf7382164b590db.tar.bz2 opensim-SC_OLD-d7121a422a334f20e96d09251cf7382164b590db.tar.xz |
Started work on CAPS support, now we have our first test capability, MapLayer requests are handled by CAPS.
Diffstat (limited to 'OpenSim/OpenSim.LocalCommunications')
-rw-r--r-- | OpenSim/OpenSim.LocalCommunications/LocalBackEndServices.cs | 2 | ||||
-rw-r--r-- | OpenSim/OpenSim.LocalCommunications/LocalUserServices.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/OpenSim.LocalCommunications/LocalBackEndServices.cs b/OpenSim/OpenSim.LocalCommunications/LocalBackEndServices.cs index 06e09f2..10e6dd9 100644 --- a/OpenSim/OpenSim.LocalCommunications/LocalBackEndServices.cs +++ b/OpenSim/OpenSim.LocalCommunications/LocalBackEndServices.cs | |||
@@ -144,7 +144,7 @@ namespace OpenSim.LocalCommunications | |||
144 | /// <param name="regionHandle"></param> | 144 | /// <param name="regionHandle"></param> |
145 | /// <param name="agentData"></param> | 145 | /// <param name="agentData"></param> |
146 | /// <returns></returns> | 146 | /// <returns></returns> |
147 | public bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData | 147 | public bool InformRegionOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData |
148 | { | 148 | { |
149 | //Console.WriteLine("CommsManager- Trying to Inform a region to expect child agent"); | 149 | //Console.WriteLine("CommsManager- Trying to Inform a region to expect child agent"); |
150 | if (this.regionHosts.ContainsKey(regionHandle)) | 150 | if (this.regionHosts.ContainsKey(regionHandle)) |
diff --git a/OpenSim/OpenSim.LocalCommunications/LocalUserServices.cs b/OpenSim/OpenSim.LocalCommunications/LocalUserServices.cs index 7a7f2bf..00f514a 100644 --- a/OpenSim/OpenSim.LocalCommunications/LocalUserServices.cs +++ b/OpenSim/OpenSim.LocalCommunications/LocalUserServices.cs | |||
@@ -91,7 +91,7 @@ namespace OpenSim.LocalCommunications | |||
91 | response.SimPort = (Int32)reg.IPListenPort; | 91 | response.SimPort = (Int32)reg.IPListenPort; |
92 | response.RegionX = reg.RegionLocX ; | 92 | response.RegionX = reg.RegionLocX ; |
93 | response.RegionY = reg.RegionLocY ; | 93 | response.RegionY = reg.RegionLocY ; |
94 | 94 | response.SeedCapability = "http://" + reg.IPListenAddr + ":" + "9000" + "/CAPS/00334-0000/"; | |
95 | theUser.currentAgent.currentRegion = reg.SimUUID; | 95 | theUser.currentAgent.currentRegion = reg.SimUUID; |
96 | theUser.currentAgent.currentHandle = reg.RegionHandle; | 96 | theUser.currentAgent.currentHandle = reg.RegionHandle; |
97 | 97 | ||