diff options
author | mingchen | 2007-07-03 14:56:00 +0000 |
---|---|---|
committer | mingchen | 2007-07-03 14:56:00 +0000 |
commit | 898b48464a288e963fc588afc5fb0c9d51bdc755 (patch) | |
tree | fcba29108d5c6524fb1772c26f9568ab605cffc4 /OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |
parent | * Optimized usings (the 'LL ate my scripts' commit) (diff) | |
download | opensim-SC_OLD-898b48464a288e963fc588afc5fb0c9d51bdc755.zip opensim-SC_OLD-898b48464a288e963fc588afc5fb0c9d51bdc755.tar.gz opensim-SC_OLD-898b48464a288e963fc588afc5fb0c9d51bdc755.tar.bz2 opensim-SC_OLD-898b48464a288e963fc588afc5fb0c9d51bdc755.tar.xz |
*Renamed OGS1 XmlRpcLoginToSimulatorMethod to the more appropriate XmlRpcSimulatorLoginMethod
*Attempt to fix the "sim not found" issue by adding sim if...well...not found (OGS1)
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 1706c6d..0ef327e 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -20,7 +20,6 @@ namespace OpenSim.Region.Communications.OGS1 | |||
20 | public Dictionary<ulong, RegionCommsListener> listeners = new Dictionary<ulong, RegionCommsListener>(); | 20 | public Dictionary<ulong, RegionCommsListener> listeners = new Dictionary<ulong, RegionCommsListener>(); |
21 | public GridInfo grid; | 21 | public GridInfo grid; |
22 | public BaseHttpServer httpListener; | 22 | public BaseHttpServer httpListener; |
23 | private bool initialised = false; | ||
24 | 23 | ||
25 | public RegionCommsListener RegisterRegion(RegionInfo regionInfo, GridInfo gridInfo) | 24 | public RegionCommsListener RegisterRegion(RegionInfo regionInfo, GridInfo gridInfo) |
26 | { | 25 | { |
@@ -44,6 +43,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
44 | XmlRpcRequest GridReq = new XmlRpcRequest("simulator_login", SendParams); | 43 | XmlRpcRequest GridReq = new XmlRpcRequest("simulator_login", SendParams); |
45 | XmlRpcResponse GridResp = GridReq.Send(gridInfo.GridServerURI, 3000); | 44 | XmlRpcResponse GridResp = GridReq.Send(gridInfo.GridServerURI, 3000); |
46 | Hashtable GridRespData = (Hashtable)GridResp.Value; | 45 | Hashtable GridRespData = (Hashtable)GridResp.Value; |
46 | |||
47 | Hashtable griddatahash = GridRespData; | 47 | Hashtable griddatahash = GridRespData; |
48 | 48 | ||
49 | // Process Response | 49 | // Process Response |