diff options
author | Melanie Thielker | 2009-05-02 20:08:26 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-05-02 20:08:26 +0000 |
commit | 780f34275bbad26c235ab5da1c8ec959b09c0bf1 (patch) | |
tree | 0cc4502a36b009c9126ccb1394f76f5c0b5c550f /OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | |
parent | * Makes ObjectUpdate compressing tweakable in OpenSim.ini - introduces: (diff) | |
download | opensim-SC_OLD-780f34275bbad26c235ab5da1c8ec959b09c0bf1.zip opensim-SC_OLD-780f34275bbad26c235ab5da1c8ec959b09c0bf1.tar.gz opensim-SC_OLD-780f34275bbad26c235ab5da1c8ec959b09c0bf1.tar.bz2 opensim-SC_OLD-780f34275bbad26c235ab5da1c8ec959b09c0bf1.tar.xz |
Handle resends better
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs index 46d5610..5ed92fe 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | |||
@@ -251,6 +251,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
251 | ; | 251 | ; |
252 | } | 252 | } |
253 | 253 | ||
254 | public bool Contains(uint sequence) | ||
255 | { | ||
256 | return contents.Contains(sequence); | ||
257 | } | ||
258 | |||
254 | public void Flush() | 259 | public void Flush() |
255 | { | 260 | { |
256 | lock (this) | 261 | lock (this) |