diff options
author | Charles Krinke | 2008-02-02 16:43:57 +0000 |
---|---|---|
committer | Charles Krinke | 2008-02-02 16:43:57 +0000 |
commit | 6a1d9e8da13ed09fa8334db8763854c908742587 (patch) | |
tree | 75f0786187bd9def08256caeb465e98aa46e2e9b /OpenSim/Region | |
parent | * Fixed llSetTextureAnim to respect rate and Length and Start (diff) | |
download | opensim-SC_OLD-6a1d9e8da13ed09fa8334db8763854c908742587.zip opensim-SC_OLD-6a1d9e8da13ed09fa8334db8763854c908742587.tar.gz opensim-SC_OLD-6a1d9e8da13ed09fa8334db8763854c908742587.tar.bz2 opensim-SC_OLD-6a1d9e8da13ed09fa8334db8763854c908742587.tar.xz |
Thank you very much daTwitch for your first contribution to the C# simulator.
This is the beginnings of support for storage of region owner in the MySQLManager
table and the use of "owner_uuid".
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 8429d00..1576bf3 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -110,6 +110,21 @@ namespace OpenSim.Region.Communications.OGS1 | |||
110 | GridParams["remoting_port"] = NetworkServersInfo.RemotingListenerPort.ToString(); | 110 | GridParams["remoting_port"] = NetworkServersInfo.RemotingListenerPort.ToString(); |
111 | GridParams["map-image-id"] = regionInfo.EstateSettings.terrainImageID.ToString(); | 111 | GridParams["map-image-id"] = regionInfo.EstateSettings.terrainImageID.ToString(); |
112 | 112 | ||
113 | |||
114 | // Added by daTwitch | ||
115 | // part of an initial brutish effort to provide accurate information (as per the xml region spec) | ||
116 | // wrt the ownership of a given region | ||
117 | // the (very bad) assumption is that this value is being read and handled inconsistently or | ||
118 | // not at all. Current strategy is to put the code in place to support the validity of this information | ||
119 | // and to roll forward debugging any issues from that point | ||
120 | // | ||
121 | // this particular section of the mod attempts to supply a value from the region's xml file to the grid | ||
122 | // server for the UUID of the region's owner (master avatar) | ||
123 | // | ||
124 | GridParams["master_avatar_uuid"] = regionInfo.MasterAvatarAssignedUUID.ToString(); | ||
125 | // end of daTwitch's addition to this file | ||
126 | |||
127 | |||
113 | // Package into an XMLRPC Request | 128 | // Package into an XMLRPC Request |
114 | ArrayList SendParams = new ArrayList(); | 129 | ArrayList SendParams = new ArrayList(); |
115 | SendParams.Add(GridParams); | 130 | SendParams.Add(GridParams); |
@@ -1297,4 +1312,4 @@ namespace OpenSim.Region.Communications.OGS1 | |||
1297 | } | 1312 | } |
1298 | } | 1313 | } |
1299 | 1314 | ||
1300 | } \ No newline at end of file | 1315 | } |