From b5fcb5e872ec138ff7138906bffae193b6dae1a6 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 17 Jan 2010 20:10:42 -0800 Subject: HG teleports through gatekeeper are working. --- .../Services/HypergridService/GatekeeperService.cs | 39 +--------------------- 1 file changed, 1 insertion(+), 38 deletions(-) (limited to 'OpenSim/Services/HypergridService/GatekeeperService.cs') diff --git a/OpenSim/Services/HypergridService/GatekeeperService.cs b/OpenSim/Services/HypergridService/GatekeeperService.cs index 416e443..72db93f 100644 --- a/OpenSim/Services/HypergridService/GatekeeperService.cs +++ b/OpenSim/Services/HypergridService/GatekeeperService.cs @@ -221,44 +221,7 @@ namespace OpenSim.Services.HypergridService return m_SimulationService.CreateAgent(destination, aCircuit, 0, out reason); } - public bool UpdateAgent(GridRegion destination, AgentData agent) - { - // Get the region - destination = m_GridService.GetRegionByUUID(m_ScopeID, destination.RegionID); - if (destination == null) - { - return false; - } - - return m_SimulationService.UpdateAgent(destination, agent); - } - - public bool LoginAttachment(GridRegion destination, ISceneObject sog) - { - // Get the region - destination = m_GridService.GetRegionByUUID(m_ScopeID, destination.RegionID); - if (destination == null) - { - return false; - } - - // May want to filter attachments - return m_SimulationService.CreateObject(destination, sog, false); - } - - public void ReleaseAgent(UUID regionID, UUID agentID) - { - GridRegion region = m_GridService.GetRegionByUUID(m_ScopeID, regionID); - if (region != null) - { - string uri = "http://" + region.ExternalHostName + ":" + region.HttpPort + - "/agent/" + agentID.ToString() + "/" + regionID.ToString() + "/release/"; - - m_SimulationService.ReleaseAgent(regionID, agentID, uri); - } - } - - protected bool Authenticate(AgentCircuitData aCircuit) + protected bool Authenticate(AgentCircuitData aCircuit) { string authURL = string.Empty; if (aCircuit.ServiceURLs.ContainsKey("HomeURI")) -- cgit v1.1