Plumb conifg into the client views. Add config option to configure packet

dropping.
This commit is contained in:
Melanie Thielker
2009-05-02 17:31:49 +00:00
parent 011448f69a
commit 66e25abbfe
6 changed files with 31 additions and 0 deletions

View File

@@ -135,6 +135,11 @@ namespace OpenSim.Region.Framework.Scenes
{
get { return m_capsModule; }
}
public IConfigSource Config
{
get { return m_config; }
}
// Central Update Loop

View File

@@ -31,6 +31,7 @@ using System.Reflection;
using System.Threading;
using OpenMetaverse;
using log4net;
using Nini.Config;
using OpenSim.Framework;
using OpenSim.Framework.Console;
using OpenSim.Framework.Communications.Cache;
@@ -50,6 +51,11 @@ namespace OpenSim.Region.Framework.Scenes
#region Fields
public IConfigSource Config
{
get { return null; }
}
/// <value>
/// All the region modules attached to this scene.
/// </value>