Files
opensim/OpenSim/OpenSim.Region/RegionManager.cs
MW 38a800400a Disabled the CheckSum Server as it seems that isn't used by viewer 1.18.
Started to add support for asset uploads over CAPS (the asset is uploaded but seems to come out corrupt). 
Started to cleanup/rewrite the AssetCache.
Fixed bug in MapBlock requests, where data for some regions wasn't being sent.
Renamed PrimData's Texture  to TextureEntry.   
most likely a few other small changes.
2007-06-24 15:24:02 +00:00

31 lines
817 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using OpenGrid.Framework.Communications;
using OpenSim.Framework;
using OpenSim.Framework.Types;
using OpenSim.Servers;
namespace OpenSim.Region
{
public class RegionManager //needs renaming , but first we need to rename the namespace
{
protected AuthenticateSessionsBase authenticateHandler;
protected RegionCommsListener regionCommsHost;
protected CommunicationsManager commsManager;
protected List<Caps> capsHandlers = new List<Caps>();
protected BaseHttpServer httpListener;
protected Scenes.Scene m_Scene;
public ParcelManager parcelManager;
public EstateManager estateManager;
public RegionManager()
{
}
}
}