aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
diff options
context:
space:
mode:
authorJeff Ames2008-02-20 18:38:20 +0000
committerJeff Ames2008-02-20 18:38:20 +0000
commita8cfbbe963529728acbab4d9936cb89af380d1ac (patch)
tree16a72fba3d15556f6702127e7cfb98aa9fb9cf81 /OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
parentFix exception when reading OpenSim.ini file. (diff)
downloadopensim-SC_OLD-a8cfbbe963529728acbab4d9936cb89af380d1ac.zip
opensim-SC_OLD-a8cfbbe963529728acbab4d9936cb89af380d1ac.tar.gz
opensim-SC_OLD-a8cfbbe963529728acbab4d9936cb89af380d1ac.tar.bz2
opensim-SC_OLD-a8cfbbe963529728acbab4d9936cb89af380d1ac.tar.xz
Minor cleanup.
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs25
1 files changed, 10 insertions, 15 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
index f8cbe0f..33b5f36 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
@@ -13,7 +13,7 @@
13* names of its contributors may be used to endorse or promote products 13* names of its contributors may be used to endorse or promote products
14* derived from this software without specific prior written permission. 14* derived from this software without specific prior written permission.
15* 15*
16* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS AS IS AND ANY 16* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY 19* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
@@ -112,20 +112,15 @@ namespace OpenSim.Region.Communications.OGS1
112 GridParams["remoting_port"] = NetworkServersInfo.RemotingListenerPort.ToString(); 112 GridParams["remoting_port"] = NetworkServersInfo.RemotingListenerPort.ToString();
113 GridParams["map-image-id"] = regionInfo.EstateSettings.terrainImageID.ToString(); 113 GridParams["map-image-id"] = regionInfo.EstateSettings.terrainImageID.ToString();
114 114
115 115 // part of an initial brutish effort to provide accurate information (as per the xml region spec)
116 // Added by daTwitch 116 // wrt the ownership of a given region
117 // part of an initial brutish effort to provide accurate information (as per the xml region spec) 117 // the (very bad) assumption is that this value is being read and handled inconsistently or
118 // wrt the ownership of a given region 118 // not at all. Current strategy is to put the code in place to support the validity of this information
119 // the (very bad) assumption is that this value is being read and handled inconsistently or 119 // and to roll forward debugging any issues from that point
120 // not at all. Current strategy is to put the code in place to support the validity of this information 120 //
121 // and to roll forward debugging any issues from that point 121 // this particular section of the mod attempts to supply a value from the region's xml file to the grid
122 // 122 // server for the UUID of the region's owner (master avatar)
123 // this particular section of the mod attempts to supply a value from the region's xml file to the grid 123 GridParams["master_avatar_uuid"] = regionInfo.MasterAvatarAssignedUUID.ToString();
124 // server for the UUID of the region's owner (master avatar)
125 //
126 GridParams["master_avatar_uuid"] = regionInfo.MasterAvatarAssignedUUID.ToString();
127 // end of daTwitch's addition to this file
128
129 124
130 // Package into an XMLRPC Request 125 // Package into an XMLRPC Request
131 ArrayList SendParams = new ArrayList(); 126 ArrayList SendParams = new ArrayList();