mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
* 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
This commit is contained in:
@@ -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<T>(out T iface);
|
||||
T Get<T>();
|
||||
|
||||
// Basic Interfaces
|
||||
UUID AgentId { get; }
|
||||
|
||||
void Disconnect(string reason);
|
||||
void Disconnect();
|
||||
|
||||
}
|
||||
}
|
||||
12
OpenSim/Framework/Client/IClientIPEndpoint.cs
Normal file
12
OpenSim/Framework/Client/IClientIPEndpoint.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
|
||||
namespace OpenSim.Framework.Client
|
||||
{
|
||||
public interface IClientIPEndpoint
|
||||
{
|
||||
IPAddress EndPoint { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user