aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Client (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add copyright headers, formatting cleanup.Jeff Ames2009-05-201-1/+28
|
* Update svn properties.Jeff Ames2009-05-171-12/+12
|
* * Implements IP and DNS based ban facilities to OpenSim. Adam Frisby2009-05-112-0/+21
| | | | | | | | | | * 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
* Change the client API to use GridInstantMessage for the "last mile" of IMMelanie Thielker2009-03-291-7/+1
| | | | | | | sending. With this change, all methods that handle IM now use GridInstantMessage rather than individual parameters.
* * optimized usings.lbsa712009-02-121-3/+0
|
* Update svn properties. Add copyright headers. Minor formatting cleanup.Jeff Ames2008-11-093-69/+150
|
* Reintroduce transactionID to the parameter list for SendInstantMessage.Melanie Thielker2008-11-091-1/+3
| | | | | | | It is required by group IM and also for a proper implementation of item give, group notice attachments and offline IM.
* * Missed a file from previous checkin.Adam Frisby2008-11-081-0/+15
|
* * Added IClientIM to IClientCore interfacesAdam Frisby2008-11-081-0/+45
| | | | | | * Changed SendInstantMessage, dropped fromAgentSession and imSessionID as security precaution, see http://opensimulator.org/wiki/OpenSim_0.6_IClientAPI#Porting_Guide for details on porting. * Removed unused usings from Framework.*
* * Implementing first of the 0.6 IClientAPI ChangesAdam Frisby2008-11-081-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.