aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.Framework/Interfaces/LocalGridBase.cs
diff options
context:
space:
mode:
authormorphw2007-05-20 02:33:03 +0000
committermorphw2007-05-20 02:33:03 +0000
commitbb475e71c755e9162d248e97ffede7111be85412 (patch)
tree2c09a253baa9832803bddbefb83d9366a385a875 /OpenSim.Framework/Interfaces/LocalGridBase.cs
parentAdd XmlRpcMapBlockMethod handlers to service map-block XmlRpc requests from r... (diff)
downloadopensim-SC_OLD-bb475e71c755e9162d248e97ffede7111be85412.zip
opensim-SC_OLD-bb475e71c755e9162d248e97ffede7111be85412.tar.gz
opensim-SC_OLD-bb475e71c755e9162d248e97ffede7111be85412.tar.bz2
opensim-SC_OLD-bb475e71c755e9162d248e97ffede7111be85412.tar.xz
Add RequestMapBlocks method to GridServer interfaces
Diffstat (limited to 'OpenSim.Framework/Interfaces/LocalGridBase.cs')
-rw-r--r--OpenSim.Framework/Interfaces/LocalGridBase.cs2
1 files changed, 2 insertions, 0 deletions
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;
3using System.Text; 3using System.Text;
4using libsecondlife; 4using libsecondlife;
5using OpenSim.Framework.Types; 5using OpenSim.Framework.Types;
6using System.Collections;
6 7
7namespace OpenSim.Framework.Interfaces 8namespace 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