From 5e4d6cab00cb29cd088ab7b62ab13aff103b64cb Mon Sep 17 00:00:00 2001 From: onefang Date: Sun, 19 May 2019 21:24:15 +1000 Subject: Dump OpenSim 0.9.0.1 into it's own branch. --- .../Framework/Interfaces/ICapabilitiesModule.cs | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'OpenSim/Region/Framework/Interfaces/ICapabilitiesModule.cs') diff --git a/OpenSim/Region/Framework/Interfaces/ICapabilitiesModule.cs b/OpenSim/Region/Framework/Interfaces/ICapabilitiesModule.cs index 522c82d..761b1bb 100644 --- a/OpenSim/Region/Framework/Interfaces/ICapabilitiesModule.cs +++ b/OpenSim/Region/Framework/Interfaces/ICapabilitiesModule.cs @@ -40,30 +40,32 @@ namespace OpenSim.Region.Framework.Interfaces /// /// /// - void CreateCaps(UUID agentId); - + void CreateCaps(UUID agentId, uint circuitCode); + /// /// Remove the caps handler for a given agent. /// /// - void RemoveCaps(UUID agentId); - + void RemoveCaps(UUID agentId, uint circuitCode); + /// /// Will return null if the agent doesn't have a caps handler registered /// /// - Caps GetCapsForUser(UUID agentId); + Caps GetCapsForUser(uint circuitCode); void SetAgentCapsSeeds(AgentCircuitData agent); - + Dictionary GetChildrenSeeds(UUID agentID); - + string GetChildSeed(UUID agentID, ulong handle); - + void SetChildrenSeed(UUID agentID, Dictionary seeds); - + void DropChildSeed(UUID agentID, ulong handle); string GetCapsPath(UUID agentId); + + void ActivateCaps(uint circuitCode); } } -- cgit v1.1