diff options
Another interregion comms change that will not work well with previous versions. This commit moves InformRegionOfChildAgent from OGS1 to RESTComms, effectively having the complete child agent life cycle over REST: create=POST, update=PUT, close=DELETE.
Additional changes include more functions in the IHyperlink interface, and some refactorings in the HG code for better reuse in RESTComms.
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/IHyperlink.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IHyperlink.cs b/OpenSim/Framework/Communications/IHyperlink.cs index 02ba2c2..fa088d6 100644 --- a/OpenSim/Framework/Communications/IHyperlink.cs +++ b/OpenSim/Framework/Communications/IHyperlink.cs | |||
@@ -38,5 +38,7 @@ namespace OpenSim.Framework.Communications | |||
38 | bool IsHyperlinkRegion(ulong handle); | 38 | bool IsHyperlinkRegion(ulong handle); |
39 | RegionInfo GetHyperlinkRegion(ulong handle); | 39 | RegionInfo GetHyperlinkRegion(ulong handle); |
40 | ulong FindRegionHandle(ulong handle); | 40 | ulong FindRegionHandle(ulong handle); |
41 | bool SendUserInformation(RegionInfo region, AgentCircuitData aCircuit); | ||
42 | void AdjustUserInformation(AgentCircuitData aCircuit); | ||
41 | } | 43 | } |
42 | } | 44 | } |