aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-9/+8
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-50/+24
|
* Last 27 modules' directives (service connectors out).Diva Canto2012-11-131-0/+2
|
* Remove any mention of IRegionModule from region names and comments to aidMelanie2012-11-121-3/+3
| | | | grepping for remaining uses
* Removing unused handling of incoming create object by userID and itemID only.Justin Clark-Casey (justincc)2012-06-301-8/+1
| | | | | It appears this was never actually used since attachments were rezzed in other code. This was never available on remote simulator comms, only local.
* Fix bug where a failed QueryAccess to a remove region would always have the ↵Justin Clark-Casey (justincc)2012-05-251-2/+1
| | | | reason "Communications failure" no matter what the destination region actually returned
* Make ISimulationScene.GetScene() used the more efficient region id for ↵Justin Clark-Casey (justincc)2012-05-241-2/+2
| | | | lookup rather than the region handle.
* Add a position parameter to region crossing of objects. This avoids theMelanie2012-02-231-3/+3
| | | | | | potential bad update that places an object at the opposite side of the origin sim for a moment before actually crossing it. Especially important in grids like OSG where lag between sims is high.
* Check for RegionID instead of RegionHandle. Other minor tweaksDiva Canto2011-04-301-2/+2
|
* Fatpack message on agent transfers: 1 message only (UpdateAgent) containing ↵Diva Canto2011-04-281-3/+4
| | | | the agent and all attachments. Preserves backwards compatibility -- older sims get passed attachments one by one. Meaning that I finally introduced versioning in the simulation service.
* Changed order of checks for local regions when processingMic Bowman2011-03-041-16/+6
| | | | | AgentUpdate messages. Should improve throttles and reprioritization when an avatar is moving.
* Change the QUERYACCESS method to eliminate spurious access denied messagesMelanie2011-02-161-3/+4
|
* Fix up QueryAccess to also check parcelsMelanie2011-01-281-3/+3
|
* Plumb a code path for the entity transfer module to ask a destination sceneMelanie2010-12-091-0/+17
| | | | whether or not an agent is allowed there as a root agent.
* Fixes the long-standing RegionUp bug! Plus lots of other cleanups related to ↵Diva Canto2010-06-131-1/+0
| | | | neighbours.
* Get the local inner simulation service object to the handler so that there ↵Diva Canto2010-03-151-0/+5
| | | | is no possibility of cascading requests when failures happen.
* * Typo fixesJohn Hurliman2010-03-091-1/+1
| | | | * Performance improvement in the expensive GenerateClientFlags()
* * HGScene is no more.Diva Canto2010-01-301-1/+0
| | | | * Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module
* Removed obsolete interface IHyperlink.Diva Canto2010-01-241-5/+0
|
* Several more buglets removed.Diva Canto2010-01-131-1/+1
|
* CommunicationsManager deleted.Diva Canto2010-01-111-3/+0
|
* All Framework.Communications.Clients and Framework.Communications.Services ↵Diva Canto2010-01-101-48/+0
| | | | deleted, including old LoginService.
* * Finished SimulationServiceConnectorDiva Canto2010-01-071-7/+4
| | | | | * Started rerouting calls to UserService. * Compiles. May run.
* Successfully logged into a grid.Diva Canto2010-01-031-10/+14
|
* * Changed ISimulation interface to take a GridRegion as input arg instead of ↵Diva Canto2010-01-031-0/+356
a regionHandle. * Added the RemoteSimulationConnectorModule, which is the replacement for RESTComms. Scenes is not using this yet, only (standalone) Login uses these region modules for now. * Completed SimulationServiceConnector and corresponding handlers.