aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-01-19* minor: Just some minor log elaboration to reveal in the logs where a ↵Justin Clarke Casey1-6/+7
teleport is being directed rather than just its position
2009-01-16* Rig up enough infrastructure to actually perform a successful 'standalone' ↵Justin Clarke Casey1-2/+7
teleport unit test with checks that the scene presence disappeared from sceneA and appeared in sceneB * However, I'm not convinced that the actual process in the test completely reflects reality, and a lot of stuff had to be rigged up (which should get resolved over time)
2009-01-15* Add new unit test for simple teleport in a standalone.Justin Clarke Casey1-5/+4
* Does not yet check results.
2009-01-14* Fix typo which meant that RestComms was never enabled if you explicitly ↵Justin Clarke Casey1-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
2009-01-06* refactor: call AddHttpHandler() directly via CommsManagerJustin Clarke Casey1-1/+1
2009-01-05* minor: remove some mono compiler warningsJustin Clarke Casey1-5/+3
2009-01-03This may fix the home jump problem.diva1-1/+2
2009-01-03Another interregion comms change that will not work well with previous ↵diva2-6/+180
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.
2009-01-03Split agent updates into two messages: full update and position+camera ↵diva2-10/+73
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.
2009-01-01Major changes in interregion communications. This breaks compatibility with ↵diva2-27/+198
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.
2008-12-31Beginning of true REST style for interregion comms, SendChildAgentUpdate ↵diva1-7/+92
only. Agents are now resources accessed at http://<host>:<port>/agent/<uuid>/[action/]. PUT is SendChildAgentUpdate.
2008-12-31Folded HG regionhandle lookup into the normal RESTInterregionComms, to avoid ↵diva2-87/+4
proliferation of "modes".
2008-12-30* Remove mono compiler warningsJustin Clarke Casey1-3/+5
* Leaving the 23 warnings in ChildAgentDataUpdate.cs for Diva to look at
2008-12-30Making the default choice for InterregionComms work, and removing an ↵diva3-4/+9
unnecessary console debug message.
2008-12-30Update svn properties, minor formatting cleanup.Jeff Ames3-522/+522
2008-12-29Changing the default Comms module to be RESTComms, in case none is specified ↵diva3-3/+3
in OpenSim.ini. RESTComms is a super-set of LocalComms. Calls to local regions do no use REST, they use internal function calls.
2008-12-29This is a beefy commit containing the communication modules that implement ↵diva3-0/+522
SendChildAgentUpdate. This commit has only the modules, but not their usage. It should be harmless.
2008-04-30* Refactored Environment/Modules directory - modules now reside in their own ↵Adam Frisby3-239/+0
directory with any associated module-specific classes. * Each module directory is currently inside one of the following category folders: Agent (Anything relating to do with Client<->Server communications.), Avatar (Anything to do with the avatar or presence inworld), Framework (Classes modules can use), Grid (Grid traffic, new OGS2 grid comms), Scripting (Scripting functions, etc), World (The enrivonment/scene, IE Sun/Tree modules.) * This should be moved into a seperate project file.
2008-04-29* Disabled IntergridModule until a Mono bug can be isolated.Adam Frisby1-11/+18
2008-04-29* One more attempted fix.Adam Frisby1-1/+2
2008-04-29* Made a change to InterGrid module to prevent duplicate registrations.Adam Frisby2-8/+14
2008-04-29* Implemented new InterRegion comms method in the form of InterregionModuleAdam Frisby3-0/+225
* Interfaces and methods have been defined for basic operation, however a replacement grid module is required to share region URIs with neighbours for this module to work. * Tackling that next.