* Changed ISimulation interface to take a GridRegion as input arg instead of 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.
This commit is contained in:
Diva Canto
2010-01-03 09:35:12 -08:00
parent ae1bdaa7b5
commit c268e342d1
12 changed files with 763 additions and 289 deletions

View File

@@ -370,7 +370,7 @@ namespace OpenSim.Services.LLLoginService
aCircuit.SessionID = session;
aCircuit.startpos = position;
if (simConnector.CreateAgent(region.RegionHandle, aCircuit, 0, out reason))
if (simConnector.CreateAgent(region, aCircuit, 0, out reason))
return aCircuit;
return null;