From 5cb0d4fcac3f9f23640efff210790bf1db46edfe Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Tue, 19 Aug 2008 19:44:49 +0000 Subject: Packet type exclusion (Mantis #2004) Exclude SimStats packets from ack appending. --- OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs index 8023f58..11cfbd9 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs @@ -253,12 +253,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP private void AddAcks(ref Packet packet) { - // This packet type has shown to have issues with + // These packet types have shown to have issues with // acks being appended to the payload, just don't send - // any with this packet type until libsl is fixed. + // any with them until libsl is fixed. // if (packet is libsecondlife.Packets.ViewerEffectPacket) return; + if (packet is libsecondlife.Packets.SimStatsPacket) + return; // Add acks to outgoing packets // -- cgit v1.1