From 7d89e122930be39e84a6d174548fa2d12ac0484a Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 6 Sep 2008 07:52:41 +0000 Subject: * This is the fabled LibOMV update with all of the libOMV types from JHurliman * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke. --- OpenSim/Framework/Statistics/SimExtraStatsCollector.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'OpenSim/Framework/Statistics') diff --git a/OpenSim/Framework/Statistics/SimExtraStatsCollector.cs b/OpenSim/Framework/Statistics/SimExtraStatsCollector.cs index 58d5621..cc64ed6 100644 --- a/OpenSim/Framework/Statistics/SimExtraStatsCollector.cs +++ b/OpenSim/Framework/Statistics/SimExtraStatsCollector.cs @@ -28,8 +28,8 @@ using System; using System.Collections.Generic; using System.Text; -using libsecondlife; -using libsecondlife.Packets; +using OpenMetaverse; +using OpenMetaverse.Packets; using OpenSim.Framework.Statistics.Interfaces; namespace OpenSim.Framework.Statistics @@ -122,8 +122,8 @@ namespace OpenSim.Framework.Statistics /// /// Retain a dictionary of all packet queues stats reporters /// - private IDictionary packetQueueStatsCollectors - = new Dictionary(); + private IDictionary packetQueueStatsCollectors + = new Dictionary(); public void AddAbnormalClientThreadTermination() { @@ -176,9 +176,9 @@ namespace OpenSim.Framework.Statistics /// /// Register as a packet queue stats provider /// - /// An agent LLUUID + /// An agent UUID /// - public void RegisterPacketQueueStatsProvider(LLUUID uuid, IPullStatsProvider provider) + public void RegisterPacketQueueStatsProvider(UUID uuid, IPullStatsProvider provider) { lock (packetQueueStatsCollectors) { @@ -191,8 +191,8 @@ namespace OpenSim.Framework.Statistics /// /// Deregister a packet queue stats provider /// - /// An agent LLUUID - public void DeregisterPacketQueueStatsProvider(LLUUID uuid) + /// An agent UUID + public void DeregisterPacketQueueStatsProvider(UUID uuid) { lock (packetQueueStatsCollectors) { @@ -302,7 +302,7 @@ Asset service request failures: {5}"+ Environment.NewLine, "Send", "In", "Out", "Resend", "Land", "Wind", "Cloud", "Task", "Texture", "Asset")); sb.Append(Environment.NewLine); - foreach (LLUUID key in packetQueueStatsCollectors.Keys) + foreach (UUID key in packetQueueStatsCollectors.Keys) { sb.Append(string.Format("{0}: ", key)); sb.Append(packetQueueStatsCollectors[key].Report()); -- cgit v1.1