From c746a2f9f4f0b1e7eea564effdae63472f79ab22 Mon Sep 17 00:00:00 2001 From: MW Date: Sun, 27 May 2007 18:52:42 +0000 Subject: Should allow multiple worlds (and UDP servers) to be ran in one instance, just missing backend comms and working Avatar/primitives classes. --- .../OpenSim.Framework/Interfaces/Remoting/IGridServerHost.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Common/OpenSim.Framework/Interfaces/Remoting/IGridServerHost.cs (limited to 'Common/OpenSim.Framework/Interfaces/Remoting/IGridServerHost.cs') diff --git a/Common/OpenSim.Framework/Interfaces/Remoting/IGridServerHost.cs b/Common/OpenSim.Framework/Interfaces/Remoting/IGridServerHost.cs new file mode 100644 index 0000000..1569cb2 --- /dev/null +++ b/Common/OpenSim.Framework/Interfaces/Remoting/IGridServerHost.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenSim.Framework.Interfaces +{ + public interface IGridServerHost + { + void ConnectSim(string name); + string RequestSimURL(uint regionHandle); + } +} -- cgit v1.1