aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Client/IClientCore.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-05-11* Implements IP and DNS based ban facilities to OpenSim. Adam Frisby1-0/+9
* 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
2008-11-09Update svn properties. Add copyright headers. Minor formatting cleanup.Jeff Ames1-7/+34
2008-11-08* Implementing first of the 0.6 IClientAPI ChangesAdam Frisby1-0/+8
* Introducing IClientCore - this will be the key replacement for IClientAPI in the long run, it has a very minimal set of methods designed to allow you to access specialist API's. * See https://lists.berlios.de/pipermail/opensim-dev/2008-September/003049.html for the early discussion on this.