Minor formatting and documentation cleanup.
parent
058191e6cc
commit
b1aacfe0d4
|
@ -237,7 +237,7 @@ namespace OpenSim
|
||||||
config.Set("enabled", "false");
|
config.Set("enabled", "false");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DefaultConfig.Configs["Voice"] == null)
|
if (DefaultConfig.Configs["Voice"] == null)
|
||||||
DefaultConfig.AddConfig("Voice");
|
DefaultConfig.AddConfig("Voice");
|
||||||
config = DefaultConfig.Configs["Voice"];
|
config = DefaultConfig.Configs["Voice"];
|
||||||
if (config != null)
|
if (config != null)
|
||||||
|
@ -333,7 +333,6 @@ namespace OpenSim
|
||||||
Environment.Exit(0);
|
Environment.Exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Signal that the end of the world is now.
|
/// Signal that the end of the world is now.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -415,7 +414,6 @@ namespace OpenSim
|
||||||
//{
|
//{
|
||||||
// m_udpServers[i].ServerListener();
|
// m_udpServers[i].ServerListener();
|
||||||
// }
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Initialize()
|
protected override void Initialize()
|
||||||
|
@ -454,7 +452,8 @@ namespace OpenSim
|
||||||
/// <param name="regionInfo"></param>
|
/// <param name="regionInfo"></param>
|
||||||
/// <param name="portadd_flag"></param>
|
/// <param name="portadd_flag"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public UDPServer CreateRegion(RegionInfo regionInfo, bool portadd_flag) {
|
public UDPServer CreateRegion(RegionInfo regionInfo, bool portadd_flag)
|
||||||
|
{
|
||||||
return CreateRegion(regionInfo, portadd_flag, false);
|
return CreateRegion(regionInfo, portadd_flag, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -464,7 +463,8 @@ namespace OpenSim
|
||||||
/// <param name="regionInfo"></param>
|
/// <param name="regionInfo"></param>
|
||||||
/// <param name="portadd_flag"></param>
|
/// <param name="portadd_flag"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public UDPServer CreateRegion(RegionInfo regionInfo) {
|
public UDPServer CreateRegion(RegionInfo regionInfo)
|
||||||
|
{
|
||||||
return CreateRegion(regionInfo, false, true);
|
return CreateRegion(regionInfo, false, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -702,9 +702,9 @@ namespace OpenSim
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get the number of the avatars in the Region server
|
/// Get the number of regions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="usernum">The first out parameter describing the number of all the avatars in the Region server</param>
|
/// <param name="regionnum">The first out parameter describing the number of regions</param>
|
||||||
public void GetRegionNumber(out int regionnum)
|
public void GetRegionNumber(out int regionnum)
|
||||||
{
|
{
|
||||||
int accounter = 0;
|
int accounter = 0;
|
||||||
|
|
Loading…
Reference in New Issue