diff options
author | lbsa71 | 2007-07-09 21:03:36 +0000 |
---|---|---|
committer | lbsa71 | 2007-07-09 21:03:36 +0000 |
commit | 08a1fa3f96eee5e067475da453a3770ff15780f9 (patch) | |
tree | 1ed047e466e20dcf327f8c890efbf1779ead6ad6 /OpenSim/Region/ClientStack/PacketServer.cs | |
parent | * Ignored all those autogenned build files (diff) | |
download | opensim-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.cs | 2 |
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 | { |