From a5860ad438885cbf76a36dc7958947355522b8cf Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 21 Jun 2008 03:29:08 +0000 Subject: * Adds Region ban capability to Regions. You access this by going to World->Region/Estate. Then on the Estate tab, at the lower right hand corner, clicking the 'Add' button and picking an avatar. * It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores. --- OpenSim/Framework/RegionBanListItem.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 OpenSim/Framework/RegionBanListItem.cs (limited to 'OpenSim/Framework/RegionBanListItem.cs') diff --git a/OpenSim/Framework/RegionBanListItem.cs b/OpenSim/Framework/RegionBanListItem.cs new file mode 100644 index 0000000..60383fb --- /dev/null +++ b/OpenSim/Framework/RegionBanListItem.cs @@ -0,0 +1,20 @@ +using libsecondlife; +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenSim.Framework +{ + public class RegionBanListItem + { + public LLUUID regionUUID = LLUUID.Zero; + public LLUUID bannedUUID = LLUUID.Zero; + public string bannedIP = string.Empty; + public string bannedIPHostMask = string.Empty; + + public RegionBanListItem() + { + + } + } +} -- cgit v1.1