Handle resends better

This commit is contained in:
Melanie Thielker
2009-05-02 20:08:26 +00:00
parent 0b2a34438c
commit 780f34275b
2 changed files with 6 additions and 1 deletions

View File

@@ -251,6 +251,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
;
}
public bool Contains(uint sequence)
{
return contents.Contains(sequence);
}
public void Flush()
{
lock (this)