aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
diff options
context:
space:
mode:
authorMW2007-05-31 17:33:52 +0000
committerMW2007-05-31 17:33:52 +0000
commitf4448fcd7df587604b63e45fc5bcdbaec3f579ee (patch)
treee6389bd29b50326ddc0f12afb375d95a791438ea /Common/OpenSim.Framework/Interfaces/IClientAPI.cs
parentAnother commit as ordered by robl (diff)
downloadopensim-SC_OLD-f4448fcd7df587604b63e45fc5bcdbaec3f579ee.zip
opensim-SC_OLD-f4448fcd7df587604b63e45fc5bcdbaec3f579ee.tar.gz
opensim-SC_OLD-f4448fcd7df587604b63e45fc5bcdbaec3f579ee.tar.bz2
opensim-SC_OLD-f4448fcd7df587604b63e45fc5bcdbaec3f579ee.tar.xz
After nearly a hour of searching for an annoying bug (which turned out to be a new statement one line outside the loop it should have been in)....Multi-Regions in a single instance work, there is no Grid mode communication, so it can only be tested in sandbox mode right now.
All you need to do is put .xml files for each region you want to be ran by the single server inside the "bin\Regions" folder (make sure none of the settings in those .xml files conflict with each other) and then startup the server and login, Any neighbouring regions that are being ran in the instance should show up. (However there is still no movement or anything) Now time to refine the communications interfaces!
Diffstat (limited to '')
-rw-r--r--Common/OpenSim.Framework/Interfaces/IClientAPI.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
index 78be30a..810345f 100644
--- a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
+++ b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
@@ -84,6 +84,7 @@ namespace OpenSim.Framework.Interfaces
84 void SendRegionHandshake(RegionInfo regionInfo); 84 void SendRegionHandshake(RegionInfo regionInfo);
85 void MoveAgentIntoRegion(RegionInfo regInfo); 85 void MoveAgentIntoRegion(RegionInfo regInfo);
86 void SendAvatarData(RegionInfo regionInfo, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID, LLVector3 Pos); 86 void SendAvatarData(RegionInfo regionInfo, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID, LLVector3 Pos);
87 void InformClientOfNeighbour(ulong neighbourHandle, System.Net.IPAddress neighbourIP, ushort neighbourPort);
87 AgentCircuitData RequestClientInfo(); 88 AgentCircuitData RequestClientInfo();
88 } 89 }
89} 90}