From b83efd49475782d7ce65136e7e72f418299cdca6 Mon Sep 17 00:00:00 2001 From: gareth Date: Tue, 20 Mar 2007 09:04:49 +0000 Subject: Load XML for neighbourinfo from grid --- src/GridInterfaces/IGridServer.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/GridInterfaces/IGridServer.cs') diff --git a/src/GridInterfaces/IGridServer.cs b/src/GridInterfaces/IGridServer.cs index 8ab0971..dcb8ef2 100644 --- a/src/GridInterfaces/IGridServer.cs +++ b/src/GridInterfaces/IGridServer.cs @@ -47,7 +47,7 @@ namespace OpenSim.GridServers public interface IGridServer { UUIDBlock RequestUUIDBlock(); - neighbourinfo[] RequestNeighbours(); //should return a array of neighbouring regions + neighbourinfo[] RequestNeighbours(ulong regionhandle); //should return a array of neighbouring regions AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); string GetName(); @@ -63,7 +63,7 @@ namespace OpenSim.GridServers } public abstract UUIDBlock RequestUUIDBlock(); - public abstract neighbourinfo[] RequestNeighbours(); + public abstract neighbourinfo[] RequestNeighbours(ulong regionhandle); public abstract AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); public abstract bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); public abstract string GetName(); @@ -74,7 +74,7 @@ namespace OpenSim.GridServers public abstract class LocalGridBase : IGridServer { public abstract UUIDBlock RequestUUIDBlock(); - public abstract neighbourinfo[] RequestNeighbours(); + public abstract neighbourinfo[] RequestNeighbours(ulong regionhandle); public abstract AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); public abstract bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); public abstract string GetName(); -- cgit v1.1