* Apply a modified version of the part of http://opensimulator.org/mantis/view.php?id=2361 that allows region registration to be enabled/disabled on the grid server

* Region registration is enabled by default in the configuration unless the user chooses otherwise
* On the console
* show status - shows grid status
* enable-reg - enables region registration to the grid
* disable-reg - disables region registration

* Enabling or disabling region registration will not affect any other grid functions or regions already on the grid
This commit is contained in:
Justin Clarke Casey
2008-10-13 20:35:45 +00:00
parent 3d26ff209d
commit 97f4226666
6 changed files with 67 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ namespace OpenSim.Framework
{
private static readonly PacketPool instance = new PacketPool();
private const bool packetPoolEnabled = false;
private bool packetPoolEnabled = false;
private readonly Dictionary<PacketType, Stack<Packet>> pool = new Dictionary<PacketType, Stack<Packet>>();