aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorlbsa712007-07-16 18:44:30 +0000
committerlbsa712007-07-16 18:44:30 +0000
commitd79e69d168997fd8329bca630899420963a666db (patch)
tree33115b22bc2bd30e87cd025b5a26de974a45a996 /OpenSim/Region/ClientStack
parent* Slider settings for default "Newruth". (diff)
downloadopensim-SC_OLD-d79e69d168997fd8329bca630899420963a666db.zip
opensim-SC_OLD-d79e69d168997fd8329bca630899420963a666db.tar.gz
opensim-SC_OLD-d79e69d168997fd8329bca630899420963a666db.tar.bz2
opensim-SC_OLD-d79e69d168997fd8329bca630899420963a666db.tar.xz
* Since we're discussing it, applying the m_ convention on some members...
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;