From f9b7cc53deb93fc3528929385d3f76519083c927 Mon Sep 17 00:00:00 2001 From: gareth Date: Sun, 15 Apr 2007 02:31:34 +0000 Subject: W00t! multiple sims! Misc bugfixes Child agents!!!!!! General sexy stuff --- OpenSim.Framework/IGridServer.cs | 3 ++- OpenSim.Framework/RemoteGridBase.cs | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) (limited to 'OpenSim.Framework') diff --git a/OpenSim.Framework/IGridServer.cs b/OpenSim.Framework/IGridServer.cs index 001ce3b..9c06a6b 100644 --- a/OpenSim.Framework/IGridServer.cs +++ b/OpenSim.Framework/IGridServer.cs @@ -27,6 +27,7 @@ using System; +using System.Collections; using System.Collections.Generic; using System.Net; using System.Net.Sockets; @@ -50,7 +51,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); - void Close(); + void Close(); } public struct UUIDBlock diff --git a/OpenSim.Framework/RemoteGridBase.cs b/OpenSim.Framework/RemoteGridBase.cs index e1f0b9b..0b72b9f 100644 --- a/OpenSim.Framework/RemoteGridBase.cs +++ b/OpenSim.Framework/RemoteGridBase.cs @@ -1,4 +1,5 @@ using System; +using System.Collections; using System.Collections.Generic; using System.Text; using libsecondlife; @@ -21,5 +22,14 @@ 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 Close(); + public abstract Hashtable GridData { + get; + set; + } + + public abstract ArrayList neighbours { + get; + set; + } } } -- cgit v1.1