From d8ebf2fc9d7d2e50735d50e75f7153f487efe958 Mon Sep 17 00:00:00 2001 From: diva Date: Thu, 1 Jan 2009 19:42:24 +0000 Subject: Major changes in interregion communications. This breaks compatibility with older versions, and may result is all sorts of weirdnesses when interacting with sims in older versions. Changes: - Introducing synchronous Teleports. Now the receiving region calls back the sending region after the client has been made a root agent there, that is, after client sends CompleteMovement to the destination. - SendCloseAgent moved from OGS1 Remoting to RESTComms. --- OpenSim/Region/Environment/Interfaces/IInterregionComms.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Region/Environment/Interfaces') diff --git a/OpenSim/Region/Environment/Interfaces/IInterregionComms.cs b/OpenSim/Region/Environment/Interfaces/IInterregionComms.cs index b70e885..e197622 100644 --- a/OpenSim/Region/Environment/Interfaces/IInterregionComms.cs +++ b/OpenSim/Region/Environment/Interfaces/IInterregionComms.cs @@ -36,6 +36,8 @@ namespace OpenSim.Region.Environment.Interfaces public interface IInterregionCommsOut { bool SendChildAgentUpdate(ulong regionHandle, AgentData data); + bool SendReleaseAgent(ulong regionHandle, UUID id, string uri); + bool SendCloseAgent(ulong regionHandle, UUID id); } // This may not be needed, but having it here for now. -- cgit v1.1