mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
Add RequestMapBlocks method to GridServer interfaces
This commit is contained in:
@@ -52,6 +52,7 @@ namespace OpenSim.Framework.Interfaces
|
||||
string GetName();
|
||||
bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port);
|
||||
void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
|
||||
IList RequestMapBlocks(int minX, int minY, int maxX, int maxY);
|
||||
void Close();
|
||||
}
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using libsecondlife;
|
||||
using OpenSim.Framework.Types;
|
||||
using System.Collections;
|
||||
|
||||
namespace OpenSim.Framework.Interfaces
|
||||
{
|
||||
@@ -16,6 +17,7 @@ namespace OpenSim.Framework.Interfaces
|
||||
public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port);
|
||||
public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
|
||||
public abstract void AddNewSession(Login session);
|
||||
public abstract IList RequestMapBlocks(int minX, int minY, int maxX, int maxY);
|
||||
public abstract void Close();
|
||||
}
|
||||
|
||||
|
||||
@@ -22,6 +22,7 @@ namespace OpenSim.Framework.Interfaces
|
||||
public abstract string GetName();
|
||||
public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port);
|
||||
public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
|
||||
public abstract IList RequestMapBlocks(int minX, int minY, int maxX, int maxY);
|
||||
public abstract void Close();
|
||||
public abstract Hashtable GridData {
|
||||
get;
|
||||
|
||||
Reference in New Issue
Block a user