* Caught HttpListenerException and swallowed if with output

* Moved Flush into Close since it's always done in that order.
* Minor renamings
* Reversed if for clarity
This commit is contained in:
lbsa71
2008-02-25 15:36:24 +00:00
parent cda8b013ec
commit 5b3897a4af
6 changed files with 38 additions and 31 deletions

View File

@@ -182,7 +182,7 @@ namespace OpenSim.Region.ClientStack
return SendQueue.Dequeue();
}
public void Flush()
private void Flush()
{
lock (this)
{
@@ -224,6 +224,8 @@ namespace OpenSim.Region.ClientStack
public void Close()
{
Flush();
m_enabled = false;
throttleTimer.Stop();