From eafd91ba809c839e99c27055f38fe038e317f08d Mon Sep 17 00:00:00 2001 From: MW Date: Tue, 22 May 2007 11:25:34 +0000 Subject: More refactoring. --- OpenSim.RegionServer/ClientView.cs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'OpenSim.RegionServer/ClientView.cs') diff --git a/OpenSim.RegionServer/ClientView.cs b/OpenSim.RegionServer/ClientView.cs index 63bbfab..ccea2f3 100644 --- a/OpenSim.RegionServer/ClientView.cs +++ b/OpenSim.RegionServer/ClientView.cs @@ -52,6 +52,9 @@ namespace OpenSim /// public partial class ClientView : ClientViewBase { + protected static Dictionary PacketHandlers = new Dictionary(); //Global/static handlers for all clients + protected Dictionary m_packetHandlers = new Dictionary(); //local handlers for this instance + public LLUUID AgentID; public LLUUID SessionID; public LLUUID SecureSessionID = LLUUID.Zero; @@ -75,10 +78,6 @@ namespace OpenSim private RegionInfo m_regionData; protected AuthenticateSessionsBase m_authenticateSessionsHandler; - protected static Dictionary PacketHandlers = new Dictionary(); //Global/static handlers for all clients - - protected Dictionary m_packetHandlers = new Dictionary(); //local handlers for this instance - public IUserServer UserServer { set @@ -233,8 +232,6 @@ namespace OpenSim return result; } - # endregion - protected virtual void ClientLoop() { OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "OpenSimClient.cs:ClientLoop() - Entered loop"); @@ -253,6 +250,7 @@ namespace OpenSim } } } + # endregion # region Setup -- cgit v1.1