When killing a zombie session, don't send the stop packet since it often has the effect of killing a newly connected client.

This commit is contained in:
Tom Grimshaw
2010-05-17 14:14:19 -07:00
parent a003c36de5
commit 8f838c722d
10 changed files with 55 additions and 5 deletions

View File

@@ -884,6 +884,11 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
}
public void Close()
{
Close(true);
}
public void Close(bool sendStop)
{
Disconnect();
}