diff options
author | lbsa71 | 2007-07-09 21:25:43 +0000 |
---|---|---|
committer | lbsa71 | 2007-07-09 21:25:43 +0000 |
commit | 85dd493614cda12488eb7920713ddda07c921dbc (patch) | |
tree | caa4dc30e786e48645981e192d45acd8c564d5b9 /OpenSim/Region/ClientStack | |
parent | * Introduced ClientManager for great justice. (diff) | |
download | opensim-SC_OLD-85dd493614cda12488eb7920713ddda07c921dbc.zip opensim-SC_OLD-85dd493614cda12488eb7920713ddda07c921dbc.tar.gz opensim-SC_OLD-85dd493614cda12488eb7920713ddda07c921dbc.tar.bz2 opensim-SC_OLD-85dd493614cda12488eb7920713ddda07c921dbc.tar.xz |
* some follow up renaming of members et c.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/PacketServer.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/PacketServer.cs b/OpenSim/Region/ClientStack/PacketServer.cs index 5e62450..c7ca315 100644 --- a/OpenSim/Region/ClientStack/PacketServer.cs +++ b/OpenSim/Region/ClientStack/PacketServer.cs | |||
@@ -41,7 +41,11 @@ 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 ClientManager ClientAPIs = new ClientManager(); | 44 | private ClientManager m_clientManager = new ClientManager(); |
45 | public ClientManager ClientManager | ||
46 | { | ||
47 | get { return m_clientManager; } | ||
48 | } | ||
45 | 49 | ||
46 | public PacketServer(ClientStackNetworkHandler networkHandler) | 50 | public PacketServer(ClientStackNetworkHandler networkHandler) |
47 | { | 51 | { |
@@ -150,7 +154,7 @@ namespace OpenSim.Region.ClientStack | |||
150 | authenticateSessionsClass); | 154 | authenticateSessionsClass); |
151 | 155 | ||
152 | this.ClientThreads.Add(useCircuit.CircuitCode.Code, newuser); | 156 | this.ClientThreads.Add(useCircuit.CircuitCode.Code, newuser); |
153 | this.ClientAPIs.Add(useCircuit.CircuitCode.Code, (IClientAPI)newuser); | 157 | this.m_clientManager.Add(useCircuit.CircuitCode.Code, (IClientAPI)newuser); |
154 | 158 | ||
155 | return true; | 159 | return true; |
156 | } | 160 | } |