diff options
author | John Hurliman | 2009-10-05 17:38:14 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-05 17:38:14 -0700 |
commit | 429a84f390212d0f414a08420707fc90aca2a331 (patch) | |
tree | 40b0f161b1cdbd735ec3f9af86cb40f85718f22b /OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-429a84f390212d0f414a08420707fc90aca2a331.zip opensim-SC-429a84f390212d0f414a08420707fc90aca2a331.tar.gz opensim-SC-429a84f390212d0f414a08420707fc90aca2a331.tar.bz2 opensim-SC-429a84f390212d0f414a08420707fc90aca2a331.tar.xz |
Beginning work on the new LLUDP implementation
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs index e98a360..f30df4d 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | |||
@@ -39,7 +39,12 @@ using Timer=System.Timers.Timer; | |||
39 | 39 | ||
40 | namespace OpenSim.Region.ClientStack.LindenUDP | 40 | namespace OpenSim.Region.ClientStack.LindenUDP |
41 | { | 41 | { |
42 | public class LLPacketHandler : ILLPacketHandler | 42 | public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes); |
43 | public delegate void PacketDrop(Packet pack, Object id); | ||
44 | public delegate void QueueEmpty(ThrottleOutPacketType queue); | ||
45 | public delegate bool SynchronizeClientHandler(IScene scene, Packet packet, UUID agentID, ThrottleOutPacketType throttlePacketType); | ||
46 | |||
47 | public class LLPacketHandler | ||
43 | { | 48 | { |
44 | private static readonly ILog m_log | 49 | private static readonly ILog m_log |
45 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 50 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |