diff options
Diffstat (limited to 'OpenSim.Framework/Interfaces')
-rw-r--r-- | OpenSim.Framework/Interfaces/IGridServer.cs | 1 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/LocalGridBase.cs | 2 | ||||
-rw-r--r-- | OpenSim.Framework/Interfaces/RemoteGridBase.cs | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim.Framework/Interfaces/IGridServer.cs b/OpenSim.Framework/Interfaces/IGridServer.cs index b01f308..e67ea98 100644 --- a/OpenSim.Framework/Interfaces/IGridServer.cs +++ b/OpenSim.Framework/Interfaces/IGridServer.cs | |||
@@ -52,6 +52,7 @@ namespace OpenSim.Framework.Interfaces | |||
52 | string GetName(); | 52 | string GetName(); |
53 | bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); | 53 | bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); |
54 | void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); | 54 | void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); |
55 | IList RequestMapBlocks(int minX, int minY, int maxX, int maxY); | ||
55 | void Close(); | 56 | void Close(); |
56 | } | 57 | } |
57 | 58 | ||
diff --git a/OpenSim.Framework/Interfaces/LocalGridBase.cs b/OpenSim.Framework/Interfaces/LocalGridBase.cs index c3ab262..ff46502 100644 --- a/OpenSim.Framework/Interfaces/LocalGridBase.cs +++ b/OpenSim.Framework/Interfaces/LocalGridBase.cs | |||
@@ -3,6 +3,7 @@ using System.Collections.Generic; | |||
3 | using System.Text; | 3 | using System.Text; |
4 | using libsecondlife; | 4 | using libsecondlife; |
5 | using OpenSim.Framework.Types; | 5 | using OpenSim.Framework.Types; |
6 | using System.Collections; | ||
6 | 7 | ||
7 | namespace OpenSim.Framework.Interfaces | 8 | namespace OpenSim.Framework.Interfaces |
8 | { | 9 | { |
@@ -16,6 +17,7 @@ namespace OpenSim.Framework.Interfaces | |||
16 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); | 17 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); |
17 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); | 18 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); |
18 | public abstract void AddNewSession(Login session); | 19 | public abstract void AddNewSession(Login session); |
20 | public abstract IList RequestMapBlocks(int minX, int minY, int maxX, int maxY); | ||
19 | public abstract void Close(); | 21 | public abstract void Close(); |
20 | } | 22 | } |
21 | 23 | ||
diff --git a/OpenSim.Framework/Interfaces/RemoteGridBase.cs b/OpenSim.Framework/Interfaces/RemoteGridBase.cs index f24ec66..ed13ed5 100644 --- a/OpenSim.Framework/Interfaces/RemoteGridBase.cs +++ b/OpenSim.Framework/Interfaces/RemoteGridBase.cs | |||
@@ -22,6 +22,7 @@ namespace OpenSim.Framework.Interfaces | |||
22 | public abstract string GetName(); | 22 | public abstract string GetName(); |
23 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); | 23 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); |
24 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); | 24 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); |
25 | public abstract IList RequestMapBlocks(int minX, int minY, int maxX, int maxY); | ||
25 | public abstract void Close(); | 26 | public abstract void Close(); |
26 | public abstract Hashtable GridData { | 27 | public abstract Hashtable GridData { |
27 | get; | 28 | get; |