diff options
More refactoring.
Diffstat (limited to 'OpenSim.RegionServer/ClientView.cs')
-rw-r--r-- | OpenSim.RegionServer/ClientView.cs | 10 |
1 files changed, 4 insertions, 6 deletions
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 | |||
52 | /// </summary> | 52 | /// </summary> |
53 | public partial class ClientView : ClientViewBase | 53 | public partial class ClientView : ClientViewBase |
54 | { | 54 | { |
55 | protected static Dictionary<PacketType, PacketMethod> PacketHandlers = new Dictionary<PacketType, PacketMethod>(); //Global/static handlers for all clients | ||
56 | protected Dictionary<PacketType, PacketMethod> m_packetHandlers = new Dictionary<PacketType, PacketMethod>(); //local handlers for this instance | ||
57 | |||
55 | public LLUUID AgentID; | 58 | public LLUUID AgentID; |
56 | public LLUUID SessionID; | 59 | public LLUUID SessionID; |
57 | public LLUUID SecureSessionID = LLUUID.Zero; | 60 | public LLUUID SecureSessionID = LLUUID.Zero; |
@@ -75,10 +78,6 @@ namespace OpenSim | |||
75 | private RegionInfo m_regionData; | 78 | private RegionInfo m_regionData; |
76 | protected AuthenticateSessionsBase m_authenticateSessionsHandler; | 79 | protected AuthenticateSessionsBase m_authenticateSessionsHandler; |
77 | 80 | ||
78 | protected static Dictionary<PacketType, PacketMethod> PacketHandlers = new Dictionary<PacketType, PacketMethod>(); //Global/static handlers for all clients | ||
79 | |||
80 | protected Dictionary<PacketType, PacketMethod> m_packetHandlers = new Dictionary<PacketType, PacketMethod>(); //local handlers for this instance | ||
81 | |||
82 | public IUserServer UserServer | 81 | public IUserServer UserServer |
83 | { | 82 | { |
84 | set | 83 | set |
@@ -233,8 +232,6 @@ namespace OpenSim | |||
233 | return result; | 232 | return result; |
234 | } | 233 | } |
235 | 234 | ||
236 | # endregion | ||
237 | |||
238 | protected virtual void ClientLoop() | 235 | protected virtual void ClientLoop() |
239 | { | 236 | { |
240 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "OpenSimClient.cs:ClientLoop() - Entered loop"); | 237 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "OpenSimClient.cs:ClientLoop() - Entered loop"); |
@@ -253,6 +250,7 @@ namespace OpenSim | |||
253 | } | 250 | } |
254 | } | 251 | } |
255 | } | 252 | } |
253 | # endregion | ||
256 | 254 | ||
257 | # region Setup | 255 | # region Setup |
258 | 256 | ||