From 1a71a3a56776bc1d91f9da031a295fd4a0023e87 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Sun, 21 Sep 2008 16:58:14 +0000 Subject: * Fix http://opensimulator.org/mantis/view.php?id=2189 * Allow a grid mode region simulator to properly shutdown even if the grid service is offline --- OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Region/ClientStack') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs index eddee10..d885e3b 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs @@ -96,6 +96,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP // A list of the packets we haven't acked yet // private Dictionary m_PendingAcks = new Dictionary(); + // Dictionary of the packets that need acks from the client. // private class AckData @@ -109,6 +110,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP public Packet Packet; public Object Identifier; } + private Dictionary m_NeedAck = new Dictionary(); -- cgit v1.1