aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-9/+8
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-50/+24
2012-11-13Last 27 modules' directives (service connectors out).Diva Canto1-0/+2
2012-11-12Remove any mention of IRegionModule from region names and comments to aidMelanie1-3/+3
grepping for remaining uses
2012-06-30Removing unused handling of incoming create object by userID and itemID only.Justin Clark-Casey (justincc)1-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.
2012-05-25Fix bug where a failed QueryAccess to a remove region would always have the ↵Justin Clark-Casey (justincc)1-2/+1
reason "Communications failure" no matter what the destination region actually returned
2012-05-24Make ISimulationScene.GetScene() used the more efficient region id for ↵Justin Clark-Casey (justincc)1-2/+2
lookup rather than the region handle.
2012-02-23Add a position parameter to region crossing of objects. This avoids theMelanie1-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.
2011-04-30Check for RegionID instead of RegionHandle. Other minor tweaksDiva Canto1-2/+2
2011-04-28Fatpack message on agent transfers: 1 message only (UpdateAgent) containing ↵Diva Canto1-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.
2011-03-04Changed order of checks for local regions when processingMic Bowman1-16/+6
AgentUpdate messages. Should improve throttles and reprioritization when an avatar is moving.
2011-02-16Change the QUERYACCESS method to eliminate spurious access denied messagesMelanie1-3/+4
2011-01-28Fix up QueryAccess to also check parcelsMelanie1-3/+3
2010-12-09Plumb a code path for the entity transfer module to ask a destination sceneMelanie1-0/+17
whether or not an agent is allowed there as a root agent.
2010-06-13Fixes the long-standing RegionUp bug! Plus lots of other cleanups related to ↵Diva Canto1-1/+0
neighbours.
2010-03-15Get the local inner simulation service object to the handler so that there ↵Diva Canto1-0/+5
is no possibility of cascading requests when failures happen.
2010-03-09* Typo fixesJohn Hurliman1-1/+1
* Performance improvement in the expensive GenerateClientFlags()
2010-01-30* HGScene is no more.Diva Canto1-1/+0
* Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module
2010-01-24Removed obsolete interface IHyperlink.Diva Canto1-5/+0
2010-01-13Several more buglets removed.Diva Canto1-1/+1
2010-01-11CommunicationsManager deleted.Diva Canto1-3/+0
2010-01-10All Framework.Communications.Clients and Framework.Communications.Services ↵Diva Canto1-48/+0
deleted, including old LoginService.
2010-01-07* Finished SimulationServiceConnectorDiva Canto1-7/+4
* Started rerouting calls to UserService. * Compiles. May run.
2010-01-03Successfully logged into a grid.Diva Canto1-10/+14
2010-01-03* Changed ISimulation interface to take a GridRegion as input arg instead of ↵Diva Canto1-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.