From 6dcafec22d560c50625c8a391701606a1a0bb363 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Mon, 11 May 2009 19:23:51 +0000 Subject: * Implements IP and DNS based ban facilities to OpenSim. * User interface is ... primitive at best right now. * Loads bans from bans.txt and region ban DB on startup, bans.txt is in the format of one per line. The following explains how they are read; DNS bans are in the form "somewhere.com" will block ANY matching domain (including "betasomewhere.com", "beta.somewhere.com", "somewhere.com.beta") - make sure to be reasonably specific in DNS bans. IP address bans match on first characters, so, "127.0.0.1" will ban only that address, "127.0.1" will ban "127.0.10.0" but "127.0.1." will ban only the "127.0.1.*" network --- OpenSim/Framework/Client/IClientCore.cs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'OpenSim/Framework/Client/IClientCore.cs') diff --git a/OpenSim/Framework/Client/IClientCore.cs b/OpenSim/Framework/Client/IClientCore.cs index 78f0411..1d08fb9 100644 --- a/OpenSim/Framework/Client/IClientCore.cs +++ b/OpenSim/Framework/Client/IClientCore.cs @@ -25,11 +25,20 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +using OpenMetaverse; + namespace OpenSim.Framework.Client { public interface IClientCore { bool TryGet(out T iface); T Get(); + + // Basic Interfaces + UUID AgentId { get; } + + void Disconnect(string reason); + void Disconnect(); + } } \ No newline at end of file -- cgit v1.1