mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
* Restaring the sim works fine in grid mode now. Sims announce themselves to their neighbors when they start up. Neighbors get this message and tell their agents that there's a new sim up.
* Certain unrecoverable physics based crashes in ODE are now hooked up to the 'restart the sim' routine.
This commit is contained in:
@@ -69,7 +69,7 @@ namespace OpenSim.Framework
|
||||
|
||||
public LLUUID RegionID = LLUUID.Zero;
|
||||
|
||||
private uint m_remotingPort;
|
||||
public uint m_remotingPort;
|
||||
public uint RemotingPort
|
||||
{
|
||||
get
|
||||
@@ -184,7 +184,7 @@ namespace OpenSim.Framework
|
||||
}
|
||||
}
|
||||
}
|
||||
[Serializable]
|
||||
|
||||
public class RegionInfo : SimpleRegionInfo
|
||||
{
|
||||
public string RegionName = "";
|
||||
@@ -235,7 +235,15 @@ namespace OpenSim.Framework
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public RegionInfo(SearializableRegionInfo ConvertFrom)
|
||||
{
|
||||
m_regionLocX = ConvertFrom.RegionLocX;
|
||||
m_regionLocY = ConvertFrom.RegionLocY;
|
||||
m_internalEndPoint = ConvertFrom.InternalEndPoint;
|
||||
m_externalHostName = ConvertFrom.ExternalHostName;
|
||||
m_remotingPort = ConvertFrom.RemotingPort;
|
||||
RemotingAddress = ConvertFrom.RemotingAddress;
|
||||
}
|
||||
//not in use, should swap to nini though.
|
||||
public void LoadFromNiniSource(IConfigSource source)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user