From 879d1cefb8c18a899d76b2e63843166d4710378c Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 3 Aug 2012 15:19:31 +0100 Subject: clientview IsActive use is broken. Suspend it's use keeping it true ( to review later) --- OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim') diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index f7bb817..1304e16 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -517,7 +517,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP /// public void Close(bool sendStop) { - IsActive = false; +// IsActive = false; // We lock here to prevent race conditions between two threads calling close simultaneously (e.g. // a simultaneous relog just as a client is being closed out due to no packet ack from the old connection. lock (CloseSyncLock) @@ -525,7 +525,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (!IsActive) return; - IsActive = false; +// IsActive = false; CloseWithoutChecks(sendStop); } } @@ -552,7 +552,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP OutPacket(disable, ThrottleOutPacketType.Unknown); } - IsActive = false; +// IsActive = false; // Shutdown the image manager ImageManager.Close(); -- cgit v1.1