From 9ea4c03b8fa19a1c47ba562abcef8a02d825ee1d Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 5 Jan 2008 22:06:24 +0000 Subject: [PATCH] * Hiding CompletePingChecks and UseCircuitCode messages.. as the packets are most definitely handled. * My guess is someone was using them to diagnose a problem and they've been in the console output ever since. --- OpenSim/Region/ClientStack/ClientView.cs | 6 +++--- OpenSim/Region/Environment/Scenes/Scene.cs | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index 42ca4b77ec..6148fc53fb 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs @@ -3476,11 +3476,11 @@ namespace OpenSim.Region.ClientStack // Send the client the ping response back // Pass the same PingID in the matching packet // Handled In the packet processing - MainLog.Instance.Debug("CLIENT", "possibly unhandled StartPingCheck packet"); + //MainLog.Instance.Debug("CLIENT", "possibly unhandled StartPingCheck packet"); break; case PacketType.CompletePingCheck: // TODO: Perhaps this should be processed on the Sim to determine whether or not to drop a dead client - MainLog.Instance.Warn("CLIENT", "unhandled CompletePingCheck packet"); + //MainLog.Instance.Warn("CLIENT", "unhandled CompletePingCheck packet"); break; case PacketType.ObjectScale: // TODO: handle this packet @@ -3530,7 +3530,7 @@ namespace OpenSim.Region.ClientStack break; case PacketType.UseCircuitCode: // TODO: handle this packet - MainLog.Instance.Warn("CLIENT", "unhandled UseCircuitCode packet"); + //MainLog.Instance.Warn("CLIENT", "unhandled UseCircuitCode packet"); break; case PacketType.EconomyDataRequest: // TODO: handle this packet diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 0a8df9887f..215d30dfa2 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs @@ -1406,7 +1406,10 @@ namespace OpenSim.Region.Environment.Scenes "http://" + m_regInfo.ExternalHostName + ":" + httpListener.Port.ToString() + "/CAPS/" + agent.CapsPath + "0000/"); cap.RegisterHandlers(); - + if (agent.child) + { + + } cap.AddNewInventoryItem = AddInventoryItem; cap.ItemUpdatedCall = CapsUpdateInventoryItemAsset; cap.TaskScriptUpdatedCall = CapsUpdateTaskInventoryScriptAsset;