From 7a54467bed7e1da77f7e1a45ee01dfc709b5608d Mon Sep 17 00:00:00 2001 From: gareth Date: Wed, 14 Mar 2007 03:34:49 +0000 Subject: merged new OpenSim from branches/ogs-cs --- src/GridInterfaces/IGridServer.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/GridInterfaces/IGridServer.cs') diff --git a/src/GridInterfaces/IGridServer.cs b/src/GridInterfaces/IGridServer.cs index fef4c3e..c2d7172 100644 --- a/src/GridInterfaces/IGridServer.cs +++ b/src/GridInterfaces/IGridServer.cs @@ -32,6 +32,7 @@ using System.Net; using System.Net.Sockets; using System.IO; using libsecondlife; +using OpenSim; namespace OpenSim.GridServers { @@ -46,6 +47,10 @@ namespace OpenSim.GridServers public interface IGridServer { bool RequestConnection(); + Dictionary agentcircuits { + get; + set; + } UUIDBlock RequestUUIDBlock(); void RequestNeighbours(); //should return a array of neighbouring regions AuthenticateResponse AuthenticateSession(LLUUID sessionID, LLUUID agentID, uint circuitCode); @@ -91,4 +96,16 @@ namespace OpenSim.GridServers { IGridServer GetGridServer(); } + + public class agentcircuitdata { + public agentcircuitdata() { } + public LLUUID AgentID; + public LLUUID SessionID; + public LLUUID SecureSessionID; + public string firstname; + public string lastname; + public uint circuitcode; + } + + } -- cgit v1.1