diff options
author | diva | 2009-01-03 07:05:33 +0000 |
---|---|---|
committer | diva | 2009-01-03 07:05:33 +0000 |
commit | 158de95bde7cdee09334c40baee5122fd8f196e2 (patch) | |
tree | 8a8b1f41db53475cca08633cbeec09d5425a8745 /OpenSim/Framework | |
parent | Plumbing for moving InformRegionOfChildAgent over to RESTComms: pack and unpa... (diff) | |
download | opensim-SC_OLD-158de95bde7cdee09334c40baee5122fd8f196e2.zip opensim-SC_OLD-158de95bde7cdee09334c40baee5122fd8f196e2.tar.gz opensim-SC_OLD-158de95bde7cdee09334c40baee5122fd8f196e2.tar.bz2 opensim-SC_OLD-158de95bde7cdee09334c40baee5122fd8f196e2.tar.xz |
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')
-rw-r--r-- | OpenSim/Framework/Communications/IHyperlink.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/Servers/VersionInfo.cs | 2 |
2 files changed, 3 insertions, 1 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 | } |
diff --git a/OpenSim/Framework/Servers/VersionInfo.cs b/OpenSim/Framework/Servers/VersionInfo.cs index e7d26a9..7b5f405 100644 --- a/OpenSim/Framework/Servers/VersionInfo.cs +++ b/OpenSim/Framework/Servers/VersionInfo.cs | |||
@@ -48,6 +48,6 @@ namespace OpenSim | |||
48 | /// of the code that is too old. | 48 | /// of the code that is too old. |
49 | /// | 49 | /// |
50 | /// </value> | 50 | /// </value> |
51 | public readonly static int MajorInterfaceVersion = 2; | 51 | public readonly static int MajorInterfaceVersion = 3; |
52 | } | 52 | } |
53 | } | 53 | } |