aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/ClientView.PacketQueue.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/ClientView.PacketQueue.cs (renamed from OpenSim/Region/ClientStack/ClientViewBase.cs)8
1 files changed, 1 insertions, 7 deletions
diff --git a/OpenSim/Region/ClientStack/ClientViewBase.cs b/OpenSim/Region/ClientStack/ClientView.PacketQueue.cs
index 965dc40..05c2869 100644
--- a/OpenSim/Region/ClientStack/ClientViewBase.cs
+++ b/OpenSim/Region/ClientStack/ClientView.PacketQueue.cs
@@ -38,7 +38,7 @@ using OpenSim.Region.Environment;
38 38
39namespace OpenSim.Region.ClientStack 39namespace OpenSim.Region.ClientStack
40{ 40{
41 public abstract class ClientViewBase 41 public partial class ClientView
42 { 42 {
43 protected BlockingQueue<QueItem> PacketQueue; 43 protected BlockingQueue<QueItem> PacketQueue;
44 protected Dictionary<uint, uint> PendingAcks = new Dictionary<uint, uint>(); 44 protected Dictionary<uint, uint> PendingAcks = new Dictionary<uint, uint>();
@@ -56,8 +56,6 @@ namespace OpenSim.Region.ClientStack
56 56
57 protected PacketServer m_networkServer; 57 protected PacketServer m_networkServer;
58 58
59 protected abstract void ProcessInPacket(Packet Pack);
60
61 protected virtual void ProcessOutPacket(Packet Pack) 59 protected virtual void ProcessOutPacket(Packet Pack)
62 { 60 {
63 // Keep track of when this packet was sent out 61 // Keep track of when this packet was sent out
@@ -300,10 +298,6 @@ namespace OpenSim.Region.ClientStack
300 } 298 }
301 #endregion 299 #endregion
302 300
303 protected abstract void KillThread();
304
305 public abstract void ConnectionClosed();
306
307 #region Nested Classes 301 #region Nested Classes
308 302
309 public class QueItem 303 public class QueItem