Add RequestMapBlocks method to GridServer interfaces
parent
723008d8c9
commit
bb475e71c7
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue