diff options
author | Dan Lake | 2011-04-20 23:08:51 -0700 |
---|---|---|
committer | Dan Lake | 2011-04-20 23:08:51 -0700 |
commit | b5ab33b5e190e79789df3f44b24959fd229a8c6d (patch) | |
tree | b8daedb3660c39382f9dfc816087e79da2b4f39e /OpenSim/Region/ClientStack/LindenUDP/OutgoingPacket.cs | |
parent | Added an "immediate" queue to the priority queue. This is (diff) | |
download | opensim-SC_OLD-b5ab33b5e190e79789df3f44b24959fd229a8c6d.zip opensim-SC_OLD-b5ab33b5e190e79789df3f44b24959fd229a8c6d.tar.gz opensim-SC_OLD-b5ab33b5e190e79789df3f44b24959fd229a8c6d.tar.bz2 opensim-SC_OLD-b5ab33b5e190e79789df3f44b24959fd229a8c6d.tar.xz |
bug fix. Now when an unacked update packet is handled through ResendPrimUpdates, it is removed from the UnackedPacketCollection.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/OutgoingPacket.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/OutgoingPacket.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/OutgoingPacket.cs b/OpenSim/Region/ClientStack/LindenUDP/OutgoingPacket.cs index f4f024b..76c6c14 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/OutgoingPacket.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/OutgoingPacket.cs | |||
@@ -31,7 +31,8 @@ using OpenMetaverse; | |||
31 | 31 | ||
32 | namespace OpenSim.Region.ClientStack.LindenUDP | 32 | namespace OpenSim.Region.ClientStack.LindenUDP |
33 | { | 33 | { |
34 | public delegate void UnackedPacketMethod(); | 34 | |
35 | public delegate void UnackedPacketMethod(OutgoingPacket oPacket); | ||
35 | /// <summary> | 36 | /// <summary> |
36 | /// Holds a reference to the <seealso cref="LLUDPClient"/> this packet is | 37 | /// Holds a reference to the <seealso cref="LLUDPClient"/> this packet is |
37 | /// destined for, along with the serialized packet data, sequence number | 38 | /// destined for, along with the serialized packet data, sequence number |