diff options
author | Homer Horwitz | 2008-12-11 19:52:29 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-12-11 19:52:29 +0000 |
commit | d943abea579ab9e5f07fb5baac30991415655647 (patch) | |
tree | ffc7e1839d621a6b41433d030850a9e6685fe43d /OpenSim/Region/Communications | |
parent | * Also add the OpenSim.Framework reference to prebuild.xml needed by Windows (diff) | |
download | opensim-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 'OpenSim/Region/Communications')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalLoginService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index 50a8e16..7f16ec2 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs | |||
@@ -309,9 +309,9 @@ namespace OpenSim.Region.Communications.Local | |||
309 | seedcap = "https://" + serversInfo.HttpSSLCN + ":" + serversInfo.httpSSLPort + "/CAPS/" + capsPath + "0000/"; | 309 | seedcap = "https://" + serversInfo.HttpSSLCN + ":" + serversInfo.httpSSLPort + "/CAPS/" + capsPath + "0000/"; |
310 | 310 | ||
311 | } | 311 | } |
312 | else | 312 | else |
313 | { | 313 | { |
314 | seedcap = "http://" + regionInfo.ExternalEndPoint.Address.ToString() + ":" + serversInfo.HttpListenerPort + "/CAPS/" + capsPath + "0000/"; | 314 | seedcap = "http://" + regionInfo.ExternalEndPoint + ":" + serversInfo.HttpListenerPort + "/CAPS/" + capsPath + "0000/"; |
315 | } | 315 | } |
316 | 316 | ||
317 | response.SeedCapability = seedcap; //regionInfo.ExternalEndPoint.Address.ToString() + ":" + regionInfo.HttpPort + "/CAPS/" + capsPath + "0000/"; | 317 | response.SeedCapability = seedcap; //regionInfo.ExternalEndPoint.Address.ToString() + ":" + regionInfo.HttpPort + "/CAPS/" + capsPath + "0000/"; |