aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/ClientView.cs
diff options
context:
space:
mode:
authorlbsa712007-09-18 08:55:44 +0000
committerlbsa712007-09-18 08:55:44 +0000
commitffb4f97a664e8b80e209ccf0f89ad56a20a401fd (patch)
tree026179a8c09f85d63995078600d0117d67fc044b /OpenSim/Region/ClientStack/ClientView.cs
parent* Made ClientViewBase abstract (diff)
downloadopensim-SC_OLD-ffb4f97a664e8b80e209ccf0f89ad56a20a401fd.zip
opensim-SC_OLD-ffb4f97a664e8b80e209ccf0f89ad56a20a401fd.tar.gz
opensim-SC_OLD-ffb4f97a664e8b80e209ccf0f89ad56a20a401fd.tar.bz2
opensim-SC_OLD-ffb4f97a664e8b80e209ccf0f89ad56a20a401fd.tar.xz
* Merged ClientViewBase into ClientView for great justice
Diffstat (limited to 'OpenSim/Region/ClientStack/ClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/ClientView.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs
index 54c9a0d..1d92cca 100644
--- a/OpenSim/Region/ClientStack/ClientView.cs
+++ b/OpenSim/Region/ClientStack/ClientView.cs
@@ -51,7 +51,7 @@ namespace OpenSim.Region.ClientStack
51 /// Handles new client connections 51 /// Handles new client connections
52 /// Constructor takes a single Packet and authenticates everything 52 /// Constructor takes a single Packet and authenticates everything
53 /// </summary> 53 /// </summary>
54 public partial class ClientView : ClientViewBase, IClientAPI 54 public partial class ClientView : IClientAPI
55 { 55 {
56 public static TerrainManager TerrainManager; 56 public static TerrainManager TerrainManager;
57 57
@@ -134,7 +134,7 @@ namespace OpenSim.Region.ClientStack
134 this.ClientThread.Abort(); 134 this.ClientThread.Abort();
135 } 135 }
136 136
137 public override void ConnectionClosed() 137 public void ConnectionClosed()
138 { 138 {
139 clientPingTimer.Stop(); 139 clientPingTimer.Stop();
140 m_clientThreads.Remove(this.CircuitCode); 140 m_clientThreads.Remove(this.CircuitCode);
@@ -315,7 +315,7 @@ namespace OpenSim.Region.ClientStack
315 # endregion 315 # endregion
316 316
317 317
318 protected override void KillThread() 318 protected void KillThread()
319 { 319 {
320 this.ClientThread.Abort(); 320 this.ClientThread.Abort();
321 } 321 }