aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IInterregionComms.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Another interregion comms change that will not work well with previous ↵diva2009-01-031-0/+2
| | | | | | | versions. This commit moves InformRegionOfChildAgent from OGS1 to RESTComms, effectively having the complete child agent life cycle over REST: create=POST, update=PUT, close=DELETE. Additional changes include more functions in the IHyperlink interface, and some refactorings in the HG code for better reuse in RESTComms.
* Split agent updates into two messages: full update and position+camera ↵diva2009-01-031-0/+30
| | | | update. They're both sent over HTTP PUT. The full update is sent on TPs, for now; later it will also be sent on region crossings.
* Major changes in interregion communications. This breaks compatibility with ↵diva2009-01-011-0/+2
| | | | | | | | | 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.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-12-301-47/+47
|
* Merged the InterregionData that Melanie had placed there onto the existing ↵diva2008-12-291-42/+47
| | | | ChildAgentDataUpdate. This commit involves a change in prebuild.xml, because ChildAgentDataUpdate uses OpenMetaverse.StructuredData. Still no use of this data structure, though. Crossing my fingers that this partial commit will compile ok...
* Demonstration code for modular comms. No user functionalityMelanie Thielker2008-12-281-0/+4
|
* Addinf InterregionData.cs IInterregionComms.cs and InterregionComms.csMelanie Thielker2008-12-231-0/+38
Creates a nonshared region module publishing IInterregionComms, to send data of type InterregionData to another region directly.