aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Communications/REST (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * minor: Just some minor log elaboration to reveal in the logs where a ↵Justin Clarke Casey2009-01-191-6/+7
| | | | teleport is being directed rather than just its position
* * Fix typo which meant that RestComms was never enabled if you explicitly ↵Justin Clarke Casey2009-01-141-3/+5
| | | | | | | | | | enabled it * In fact, it would only be activated if there was no [Communications] section at all (which would be the case for most people with existing region setups unless they specifically added it in * This fix means that enabling inter-region rest comms is now the default
* * refactor: call AddHttpHandler() directly via CommsManagerJustin Clarke Casey2009-01-061-1/+1
|
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-01-051-5/+3
|
* This may fix the home jump problem.diva2009-01-031-1/+2
|
* Another interregion comms change that will not work well with previous ↵diva2009-01-031-6/+165
| | | | | | | 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-10/+58
| | | | 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-18/+155
| | | | | | | | | 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.
* Beginning of true REST style for interregion comms, SendChildAgentUpdate ↵diva2008-12-311-7/+92
| | | | only. Agents are now resources accessed at http://<host>:<port>/agent/<uuid>/[action/]. PUT is SendChildAgentUpdate.
* Folded HG regionhandle lookup into the normal RESTInterregionComms, to avoid ↵diva2008-12-312-87/+4
| | | | proliferation of "modes".
* * Remove mono compiler warningsJustin Clarke Casey2008-12-301-3/+5
| | | | | | * Leaving the 23 warnings in ChildAgentDataUpdate.cs for Diva to look at
* Making the default choice for InterregionComms work, and removing an ↵diva2008-12-302-1/+4
| | | | unnecessary console debug message.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-12-302-382/+382
|
* Changing the default Comms module to be RESTComms, in case none is specified ↵diva2008-12-292-2/+2
| | | | in OpenSim.ini. RESTComms is a super-set of LocalComms. Calls to local regions do no use REST, they use internal function calls.
* This is a beefy commit containing the communication modules that implement ↵diva2008-12-292-0/+382
SendChildAgentUpdate. This commit has only the modules, but not their usage. It should be harmless.