diff options
author | Charles Krinke | 2008-12-13 16:25:20 +0000 |
---|---|---|
committer | Charles Krinke | 2008-12-13 16:25:20 +0000 |
commit | 6cf0b818642518aadd8aa288127de03f6fd1a079 (patch) | |
tree | 7a08024aaab37537b52b73c7854a3ab3a4696848 /OpenSim/Data/RegionProfileData.cs | |
parent | more work on moving FileTransfer code to the clientstack. (diff) | |
download | opensim-SC_OLD-6cf0b818642518aadd8aa288127de03f6fd1a079.zip opensim-SC_OLD-6cf0b818642518aadd8aa288127de03f6fd1a079.tar.gz opensim-SC_OLD-6cf0b818642518aadd8aa288127de03f6fd1a079.tar.bz2 opensim-SC_OLD-6cf0b818642518aadd8aa288127de03f6fd1a079.tar.xz |
Mantis#2811. Thank you kindly, Diva for a patch that resolves
some of our DNS/dotted decimal issues that plague teleporting.
We are increasing the MajorInterfaceVersion from 1 to 2 in the
gridserver, so sims will need to be updated on various grids.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/RegionProfileData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/RegionProfileData.cs b/OpenSim/Data/RegionProfileData.cs index 3759341..0ec79ac 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://" + (string)responseData["sim_host"] + ":" + simData.httpPort.ToString() + "/"; | 164 | simData.httpServerURI = "http://" + (string)responseData["sim_ip"] + ":" + 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 | } |