diff options
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 3bd57cd..2e91157 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -51,15 +51,16 @@ namespace OpenSim.Region.Communications.OGS1 | |||
51 | { | 51 | { |
52 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 52 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
53 | 53 | ||
54 | // FIXME: LocalBackEndServices should to be refactored into a separate common parent class rather than | ||
55 | // encapsulated. | ||
54 | private LocalBackEndServices m_localBackend = new LocalBackEndServices(); | 56 | private LocalBackEndServices m_localBackend = new LocalBackEndServices(); |
57 | |||
55 | private Dictionary<ulong, RegionInfo> m_remoteRegionInfoCache = new Dictionary<ulong, RegionInfo>(); | 58 | private Dictionary<ulong, RegionInfo> m_remoteRegionInfoCache = new Dictionary<ulong, RegionInfo>(); |
56 | // private List<SimpleRegionInfo> m_knownRegions = new List<SimpleRegionInfo>(); | 59 | // private List<SimpleRegionInfo> m_knownRegions = new List<SimpleRegionInfo>(); |
57 | private Dictionary<ulong, int> m_deadRegionCache = new Dictionary<ulong, int>(); | 60 | private Dictionary<ulong, int> m_deadRegionCache = new Dictionary<ulong, int>(); |
58 | private Dictionary<string, string> m_queuedGridSettings = new Dictionary<string, string>(); | 61 | private Dictionary<string, string> m_queuedGridSettings = new Dictionary<string, string>(); |
59 | private List<RegionInfo> m_regionsOnInstance = new List<RegionInfo>(); | 62 | private List<RegionInfo> m_regionsOnInstance = new List<RegionInfo>(); |
60 | 63 | ||
61 | |||
62 | |||
63 | public BaseHttpServer httpListener; | 64 | public BaseHttpServer httpListener; |
64 | public NetworkServersInfo serversInfo; | 65 | public NetworkServersInfo serversInfo; |
65 | public BaseHttpServer httpServer; | 66 | public BaseHttpServer httpServer; |
@@ -79,6 +80,16 @@ namespace OpenSim.Region.Communications.OGS1 | |||
79 | get { return _rdebugRegionName; } | 80 | get { return _rdebugRegionName; } |
80 | set { _rdebugRegionName = value; } | 81 | set { _rdebugRegionName = value; } |
81 | } | 82 | } |
83 | |||
84 | /// <summary> | ||
85 | /// Doesn't have any effect yet! | ||
86 | /// </summary> | ||
87 | public bool RegionLoginsEnabled | ||
88 | { | ||
89 | get { return m_regionLoginsEnabled; } | ||
90 | set { m_regionLoginsEnabled = value; } | ||
91 | } | ||
92 | private bool m_regionLoginsEnabled; | ||
82 | 93 | ||
83 | /// <summary> | 94 | /// <summary> |
84 | /// Contructor. Adds "expect_user" and "check" xmlrpc method handlers | 95 | /// Contructor. Adds "expect_user" and "check" xmlrpc method handlers |