Add RequestMapBlocks method to GridServer interfaces
parent
723008d8c9
commit
bb475e71c7
|
@ -52,6 +52,7 @@ namespace OpenSim.Framework.Interfaces
|
||||||
string GetName();
|
string GetName();
|
||||||
bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port);
|
bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port);
|
||||||
void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
|
void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
|
||||||
|
IList RequestMapBlocks(int minX, int minY, int maxX, int maxY);
|
||||||
void Close();
|
void Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using libsecondlife;
|
using libsecondlife;
|
||||||
using OpenSim.Framework.Types;
|
using OpenSim.Framework.Types;
|
||||||
|
using System.Collections;
|
||||||
|
|
||||||
namespace OpenSim.Framework.Interfaces
|
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 bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port);
|
||||||
public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
|
public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
|
||||||
public abstract void AddNewSession(Login session);
|
public abstract void AddNewSession(Login session);
|
||||||
|
public abstract IList RequestMapBlocks(int minX, int minY, int maxX, int maxY);
|
||||||
public abstract void Close();
|
public abstract void Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@ namespace OpenSim.Framework.Interfaces
|
||||||
public abstract string GetName();
|
public abstract string GetName();
|
||||||
public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port);
|
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 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 void Close();
|
||||||
public abstract Hashtable GridData {
|
public abstract Hashtable GridData {
|
||||||
get;
|
get;
|
||||||
|
|
Loading…
Reference in New Issue