aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/RegionApplicationBase.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
index adf30bc..ec7eee4 100644
--- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs
+++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
@@ -42,16 +42,16 @@ namespace OpenSim.Region.ClientStack
42{ 42{
43 public class RegionApplicationBase 43 public class RegionApplicationBase
44 { 44 {
45 protected AssetCache AssetCache; 45 protected AssetCache m_assetCache;
46 protected InventoryCache InventoryCache; 46 protected InventoryCache m_inventoryCache;
47 protected Dictionary<EndPoint, uint> clientCircuits = new Dictionary<EndPoint, uint>(); 47 protected Dictionary<EndPoint, uint> m_clientCircuits = new Dictionary<EndPoint, uint>();
48 protected DateTime startuptime; 48 protected DateTime m_startuptime;
49 protected NetworkServersInfo serversData; 49 protected NetworkServersInfo m_serversData;
50 50
51 protected List<UDPServer> m_udpServer = new List<UDPServer>(); 51 protected List<UDPServer> m_udpServer = new List<UDPServer>();
52 protected List<RegionInfo> regionData = new List<RegionInfo>(); 52 protected List<RegionInfo> m_regionData = new List<RegionInfo>();
53 protected List<IWorld> m_localWorld = new List<IWorld>(); 53 protected List<IWorld> m_localWorld = new List<IWorld>();
54 protected BaseHttpServer httpServer; 54 protected BaseHttpServer m_httpServer;
55 protected List<AuthenticateSessionsBase> AuthenticateSessionsHandler = new List<AuthenticateSessionsBase>(); 55 protected List<AuthenticateSessionsBase> AuthenticateSessionsHandler = new List<AuthenticateSessionsBase>();
56 56
57 protected LogBase m_log; 57 protected LogBase m_log;