aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/ClientView.cs
diff options
context:
space:
mode:
authorMW2007-05-22 11:25:34 +0000
committerMW2007-05-22 11:25:34 +0000
commiteafd91ba809c839e99c27055f38fe038e317f08d (patch)
tree864d4d1e33c95a52f672886b1065897775449dbf /OpenSim.RegionServer/ClientView.cs
parentMore work on adding Events to ClientView (and registering to handle those eve... (diff)
downloadopensim-SC_OLD-eafd91ba809c839e99c27055f38fe038e317f08d.zip
opensim-SC_OLD-eafd91ba809c839e99c27055f38fe038e317f08d.tar.gz
opensim-SC_OLD-eafd91ba809c839e99c27055f38fe038e317f08d.tar.bz2
opensim-SC_OLD-eafd91ba809c839e99c27055f38fe038e317f08d.tar.xz
More refactoring.
Diffstat (limited to 'OpenSim.RegionServer/ClientView.cs')
-rw-r--r--OpenSim.RegionServer/ClientView.cs10
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