aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService/LLLoginService.cs
diff options
context:
space:
mode:
authorMelanie2010-12-06 02:54:51 +0000
committerMelanie2010-12-06 02:54:51 +0000
commit45314c662212a5b446eddbe4c18a24cecf9ae88a (patch)
tree0e694eccba72bce8e153449417573563f623a478 /OpenSim/Services/LLLoginService/LLLoginService.cs
parentMerge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff)
parentFixed some inconsistency with trailing /. Made debug messages consistent. Cha... (diff)
downloadopensim-SC_OLD-45314c662212a5b446eddbe4c18a24cecf9ae88a.zip
opensim-SC_OLD-45314c662212a5b446eddbe4c18a24cecf9ae88a.tar.gz
opensim-SC_OLD-45314c662212a5b446eddbe4c18a24cecf9ae88a.tar.bz2
opensim-SC_OLD-45314c662212a5b446eddbe4c18a24cecf9ae88a.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginService.cs')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index 335c7e7..1749836 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -593,6 +593,7 @@ namespace OpenSim.Services.LLLoginService
593 593
594 private GridRegion FindForeignRegion(string domainName, uint port, string regionName, out GridRegion gatekeeper) 594 private GridRegion FindForeignRegion(string domainName, uint port, string regionName, out GridRegion gatekeeper)
595 { 595 {
596 m_log.Debug("[LLLOGIN SERVICE]: attempting to findforeignregion " + domainName + ":" + port.ToString() + ":" + regionName);
596 gatekeeper = new GridRegion(); 597 gatekeeper = new GridRegion();
597 gatekeeper.ExternalHostName = domainName; 598 gatekeeper.ExternalHostName = domainName;
598 gatekeeper.HttpPort = port; 599 gatekeeper.HttpPort = port;
@@ -658,11 +659,9 @@ namespace OpenSim.Services.LLLoginService
658 gatekeeper = new GridRegion(destination); 659 gatekeeper = new GridRegion(destination);
659 gatekeeper.ExternalHostName = hostName; 660 gatekeeper.ExternalHostName = hostName;
660 gatekeeper.HttpPort = (uint)port; 661 gatekeeper.HttpPort = (uint)port;
661 662 gatekeeper.ServerURI = m_GatekeeperURL;
662 }
663 else // login to foreign grid
664 {
665 } 663 }
664 m_log.Debug("[LLLOGIN SERVICE]: no gatekeeper detected..... using " + m_GatekeeperURL);
666 } 665 }
667 666
668 bool success = false; 667 bool success = false;