mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
fix lludp to read pseudocrc from SOP; move region cacheID to region settings
This commit is contained in:
@@ -180,7 +180,6 @@ namespace OpenSim.Framework
|
||||
|
||||
private Dictionary<String, String> m_extraSettings = new Dictionary<string, string>();
|
||||
|
||||
public UUID CacheID { get; set;}
|
||||
// Apparently, we're applying the same estatesettings regardless of whether it's local or remote.
|
||||
|
||||
// MT: Yes. Estates can't span trust boundaries. Therefore, it can be
|
||||
@@ -197,8 +196,6 @@ namespace OpenSim.Framework
|
||||
public RegionInfo(string description, string filename, bool skipConsoleConfig, IConfigSource configSource, string configName)
|
||||
{
|
||||
// m_configSource = configSource;
|
||||
CacheID = UUID.Random();
|
||||
|
||||
if (filename.ToLower().EndsWith(".ini"))
|
||||
{
|
||||
if (!File.Exists(filename)) // New region config request
|
||||
@@ -257,7 +254,6 @@ namespace OpenSim.Framework
|
||||
ReadNiniConfig(source, name);
|
||||
|
||||
m_serverURI = string.Empty;
|
||||
CacheID = UUID.Random();
|
||||
}
|
||||
|
||||
public RegionInfo(uint legacyRegionLocX, uint legacyRegionLocY, IPEndPoint internalEndPoint, string externalUri)
|
||||
@@ -269,13 +265,11 @@ namespace OpenSim.Framework
|
||||
m_internalEndPoint = internalEndPoint;
|
||||
m_externalHostName = externalUri;
|
||||
m_serverURI = string.Empty;
|
||||
CacheID = UUID.Random();
|
||||
}
|
||||
|
||||
public RegionInfo()
|
||||
{
|
||||
m_serverURI = string.Empty;
|
||||
CacheID = UUID.Random();
|
||||
}
|
||||
|
||||
public EstateSettings EstateSettings
|
||||
|
||||
Reference in New Issue
Block a user