diff options
author | lbsa71 | 2007-09-18 09:59:33 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-18 09:59:33 +0000 |
commit | a963b3057bdc80fc403e2b8402d0666c3d3f5c97 (patch) | |
tree | e2395d69fd3a7ef9fd4002498d9ebad914235645 /OpenSim/Region/ClientStack/PacketServer.cs | |
parent | * Merged ClientViewBase into ClientView for great justice (diff) | |
download | opensim-SC_OLD-a963b3057bdc80fc403e2b8402d0666c3d3f5c97.zip opensim-SC_OLD-a963b3057bdc80fc403e2b8402d0666c3d3f5c97.tar.gz opensim-SC_OLD-a963b3057bdc80fc403e2b8402d0666c3d3f5c97.tar.bz2 opensim-SC_OLD-a963b3057bdc80fc403e2b8402d0666c3d3f5c97.tar.xz |
* Replaced usage of ClientView with IClientAPI
* Some propertification and hideousness of fields.
Diffstat (limited to 'OpenSim/Region/ClientStack/PacketServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/PacketServer.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/PacketServer.cs b/OpenSim/Region/ClientStack/PacketServer.cs index 5d0862b..481e445 100644 --- a/OpenSim/Region/ClientStack/PacketServer.cs +++ b/OpenSim/Region/ClientStack/PacketServer.cs | |||
@@ -40,7 +40,7 @@ namespace OpenSim.Region.ClientStack | |||
40 | { | 40 | { |
41 | private ClientStackNetworkHandler _networkHandler; | 41 | private ClientStackNetworkHandler _networkHandler; |
42 | private IScene _localScene; | 42 | private IScene _localScene; |
43 | public Dictionary<uint, ClientView> ClientThreads = new Dictionary<uint, ClientView>(); | 43 | public Dictionary<uint, IClientAPI> ClientThreads = new Dictionary<uint, IClientAPI>(); |
44 | private ClientManager m_clientManager = new ClientManager(); | 44 | private ClientManager m_clientManager = new ClientManager(); |
45 | public ClientManager ClientManager | 45 | public ClientManager ClientManager |
46 | { | 46 | { |
@@ -106,7 +106,7 @@ namespace OpenSim.Region.ClientStack | |||
106 | /// </summary> | 106 | /// </summary> |
107 | /// <param name="packet"></param> | 107 | /// <param name="packet"></param> |
108 | /// <param name="simClient"></param> | 108 | /// <param name="simClient"></param> |
109 | public virtual void SendPacketToAllExcept(Packet packet, ClientView simClient) | 109 | public virtual void SendPacketToAllExcept(Packet packet, IClientAPI simClient) |
110 | { | 110 | { |
111 | 111 | ||
112 | } | 112 | } |
@@ -129,7 +129,7 @@ namespace OpenSim.Region.ClientStack | |||
129 | 129 | ||
130 | } | 130 | } |
131 | 131 | ||
132 | protected virtual ClientView CreateNewClient(EndPoint remoteEP, UseCircuitCodePacket initialcirpack, Dictionary<uint, ClientView> clientThreads, IScene scene, AssetCache assetCache, PacketServer packServer, AgentCircuitManager authenSessions) | 132 | protected virtual IClientAPI CreateNewClient(EndPoint remoteEP, UseCircuitCodePacket initialcirpack, Dictionary<uint, IClientAPI> clientThreads, IScene scene, AssetCache assetCache, PacketServer packServer, AgentCircuitManager authenSessions) |
133 | { | 133 | { |
134 | return new ClientView(remoteEP, initialcirpack, clientThreads, scene, assetCache, packServer, authenSessions ); | 134 | return new ClientView(remoteEP, initialcirpack, clientThreads, scene, assetCache, packServer, authenSessions ); |
135 | } | 135 | } |
@@ -145,7 +145,7 @@ namespace OpenSim.Region.ClientStack | |||
145 | /// <returns></returns> | 145 | /// <returns></returns> |
146 | public virtual bool AddNewClient(EndPoint epSender, UseCircuitCodePacket useCircuit, AssetCache assetCache, AgentCircuitManager authenticateSessionsClass) | 146 | public virtual bool AddNewClient(EndPoint epSender, UseCircuitCodePacket useCircuit, AssetCache assetCache, AgentCircuitManager authenticateSessionsClass) |
147 | { | 147 | { |
148 | ClientView newuser = | 148 | IClientAPI newuser = |
149 | CreateNewClient(epSender, useCircuit, ClientThreads, _localScene, assetCache, this, | 149 | CreateNewClient(epSender, useCircuit, ClientThreads, _localScene, assetCache, this, |
150 | authenticateSessionsClass); | 150 | authenticateSessionsClass); |
151 | 151 | ||