From 1260e35ca824aed8042f5b83bca487f1483815dd Mon Sep 17 00:00:00 2001 From: MW Date: Thu, 15 Mar 2007 12:44:06 +0000 Subject: --- src/Util.cs | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'src/Util.cs') diff --git a/src/Util.cs b/src/Util.cs index e7ca608..477390e 100644 --- a/src/Util.cs +++ b/src/Util.cs @@ -59,17 +59,19 @@ namespace OpenSim public bool Incoming; } - public class agentcircuitdata { - public agentcircuitdata() { } - public LLUUID AgentID; - public LLUUID SessionID; - public LLUUID SecureSessionID; - public string firstname; - public string lastname; - public uint circuitcode; - } - - + /* this is in IGridServer.cs, so there should be no reason for it to be here as well + public class agentcircuitdata + { + public agentcircuitdata() { } + public LLUUID AgentID; + public LLUUID SessionID; + public LLUUID SecureSessionID; + public string firstname; + public string lastname; + public uint circuitcode; + } + */ + public class BlockingQueue< T > { private Queue< T > _queue = new Queue< T >(); private object _queueSync = new object(); -- cgit v1.1