aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/RegionProfileData.cs
diff options
context:
space:
mode:
authorHomer Horwitz2008-12-11 19:52:29 +0000
committerHomer Horwitz2008-12-11 19:52:29 +0000
commitd943abea579ab9e5f07fb5baac30991415655647 (patch)
treeffc7e1839d621a6b41433d030850a9e6685fe43d /OpenSim/Data/RegionProfileData.cs
parent* Also add the OpenSim.Framework reference to prebuild.xml needed by Windows (diff)
downloadopensim-SC_OLD-d943abea579ab9e5f07fb5baac30991415655647.zip
opensim-SC_OLD-d943abea579ab9e5f07fb5baac30991415655647.tar.gz
opensim-SC_OLD-d943abea579ab9e5f07fb5baac30991415655647.tar.bz2
opensim-SC_OLD-d943abea579ab9e5f07fb5baac30991415655647.tar.xz
Move from IP to hostname for seed caps on login, for gridmode and standalone.
All the other caps (except the initial one) are already sent with hostname instead of IP. NOTE: This changes gridserver and userserver
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/RegionProfileData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/RegionProfileData.cs b/OpenSim/Data/RegionProfileData.cs
index 5a3a42c..3759341 100644
--- a/OpenSim/Data/RegionProfileData.cs
+++ b/OpenSim/Data/RegionProfileData.cs
@@ -161,7 +161,7 @@ namespace OpenSim.Data
161 simData.httpPort = Convert.ToUInt32((string) responseData["http_port"]); 161 simData.httpPort = Convert.ToUInt32((string) responseData["http_port"]);
162 simData.remotingPort = Convert.ToUInt32((string) responseData["remoting_port"]); 162 simData.remotingPort = Convert.ToUInt32((string) responseData["remoting_port"]);
163 simData.serverURI = (string) responseData["server_uri"]; 163 simData.serverURI = (string) responseData["server_uri"];
164 simData.httpServerURI = "http://" + simData.serverIP + ":" + simData.httpPort.ToString() + "/"; 164 simData.httpServerURI = "http://" + (string)responseData["sim_host"] + ":" + simData.httpPort.ToString() + "/";
165 simData.UUID = new UUID((string) responseData["region_UUID"]); 165 simData.UUID = new UUID((string) responseData["region_UUID"]);
166 simData.regionName = (string) responseData["region_name"]; 166 simData.regionName = (string) responseData["region_name"];
167 } 167 }