aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/PacketServer.cs
diff options
context:
space:
mode:
authorlbsa712007-07-09 21:03:36 +0000
committerlbsa712007-07-09 21:03:36 +0000
commit08a1fa3f96eee5e067475da453a3770ff15780f9 (patch)
tree1ed047e466e20dcf327f8c890efbf1779ead6ad6 /OpenSim/Region/ClientStack/PacketServer.cs
parent* Ignored all those autogenned build files (diff)
downloadopensim-SC_OLD-08a1fa3f96eee5e067475da453a3770ff15780f9.zip
opensim-SC_OLD-08a1fa3f96eee5e067475da453a3770ff15780f9.tar.gz
opensim-SC_OLD-08a1fa3f96eee5e067475da453a3770ff15780f9.tar.bz2
opensim-SC_OLD-08a1fa3f96eee5e067475da453a3770ff15780f9.tar.xz
* Introduced ClientManager for great justice.
Diffstat (limited to 'OpenSim/Region/ClientStack/PacketServer.cs')
-rw-r--r--OpenSim/Region/ClientStack/PacketServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/PacketServer.cs b/OpenSim/Region/ClientStack/PacketServer.cs
index b5f0a02..5e62450 100644
--- a/OpenSim/Region/ClientStack/PacketServer.cs
+++ b/OpenSim/Region/ClientStack/PacketServer.cs
@@ -41,7 +41,7 @@ namespace OpenSim.Region.ClientStack
41 private ClientStackNetworkHandler _networkHandler; 41 private ClientStackNetworkHandler _networkHandler;
42 private IWorld _localWorld; 42 private IWorld _localWorld;
43 public Dictionary<uint, ClientView> ClientThreads = new Dictionary<uint, ClientView>(); 43 public Dictionary<uint, ClientView> ClientThreads = new Dictionary<uint, ClientView>();
44 public Dictionary<uint, IClientAPI> ClientAPIs = new Dictionary<uint, IClientAPI>(); 44 public ClientManager ClientAPIs = new ClientManager();
45 45
46 public PacketServer(ClientStackNetworkHandler networkHandler) 46 public PacketServer(ClientStackNetworkHandler networkHandler)
47 { 47 {