aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs
diff options
context:
space:
mode:
authorOren Hurvitz2014-04-13 12:58:37 +0300
committerOren Hurvitz2014-04-13 12:58:37 +0300
commitb3ebec184fdb0fec08eff451a14856f21f8c5b38 (patch)
tree550c2dd2256f92adecd09cb8bcad1b1453c06e38 /OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs
parentBetter error checking when creating hyperlinks: a) Reject invalid strings; b)... (diff)
downloadopensim-SC_OLD-b3ebec184fdb0fec08eff451a14856f21f8c5b38.zip
opensim-SC_OLD-b3ebec184fdb0fec08eff451a14856f21f8c5b38.tar.gz
opensim-SC_OLD-b3ebec184fdb0fec08eff451a14856f21f8c5b38.tar.bz2
opensim-SC_OLD-b3ebec184fdb0fec08eff451a14856f21f8c5b38.tar.xz
In teleports, when sending the Source region, set its ServerURI to the Gatekeeper URI (which is used with Regions); not the Home URI (which is used with Users)
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs
index 79bff06..0becfb2 100644
--- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs
@@ -288,7 +288,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
288 connector = new UserAgentServiceConnector(userAgentDriver); 288 connector = new UserAgentServiceConnector(userAgentDriver);
289 289
290 GridRegion source = new GridRegion(Scene.RegionInfo); 290 GridRegion source = new GridRegion(Scene.RegionInfo);
291 source.RawServerURI = m_ThisHomeURI; 291 source.RawServerURI = m_GatekeeperURI;
292 292
293 bool success = connector.LoginAgentToGrid(source, agentCircuit, reg, finalDestination, false, out reason); 293 bool success = connector.LoginAgentToGrid(source, agentCircuit, reg, finalDestination, false, out reason);
294 logout = success; // flag for later logout from this grid; this is an HG TP 294 logout = success; // flag for later logout from this grid; this is an HG TP