aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/MessageServerConfig.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* remove now unused GridConfig, MessageServerConfig, UserConfigJustin Clark-Casey (justincc)2010-07-301-152/+0
|
* Fix the user and password defaults int he remote console setupMelanie2009-08-211-2/+2
|
* Graft the REST console onto the message server as well. What a dirty hack!Melanie2009-08-191-1/+15
| | | | Works the same as the others.
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * Moved the DefaultConfig settings into already-existing ConfigSettingslbsa712009-04-171-6/+6
|
* * Some more work on refactoring configs;lbsa712009-04-171-23/+20
| | | | | | | * Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
* * Since that was seemingly an false alarm, reverting the revert.lbsa712009-04-161-1/+1
|
* * bizarrely, two reports that that last commit broke script engine startup ↵lbsa712009-04-161-1/+1
| | | | (!) on linux - reverting until we can investigate further.
* * Started arduous config refactoring task with babystep introduction of ↵lbsa712009-04-161-1/+1
| | | | common baseclass for backend configs.
* * Remove warningsJustin Clarke Casey2008-08-091-3/+0
|
* Update svn properties, clean up formatting, refactor out duplicate ↵Jeff Ames2008-06-131-2/+2
| | | | hard-coded port numbers.
* * Fixes incorrect message server startup promptTeravus Ovares2008-06-061-1/+1
|
* * Fixed default ports on the MessagingServer config.Teravus Ovares2008-06-021-2/+2
|
* * This update enables grid wide presence updates.Teravus Ovares2008-06-021-0/+9
| | | | | | | * You'll need to start-up the MessageingServer and set it up. It sets up like any of the other grid servers. * All user presence data is kept in memory for speed, while the agent is online. That means if you shutdown the messaging server or the messaging server crashes, it forgets who's online/offline. * Occasionally the region-cache will get stale if regions move around a lot. if it gets stale, run clear-cache on the messaging server console to clear the region cache.
* * Spring cleaning.Adam Frisby2008-04-291-33/+27
| | | | | * Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-4/+1
| | | | (this took a while to run).
* changing more references to OpenSim.DataSean Dague2008-04-021-1/+1
|
* Formatting cleanup.Jeff Ames2008-03-181-27/+27
|
* * Message Server Linkages (still not ready for use so don't start it yet)Teravus Ovares2008-02-251-0/+6
|
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* Converted logging to use log4net.Jeff Ames2008-02-051-0/+1
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Mother of all commits:Adam Frisby2008-01-151-9/+9
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* * A few more Message Server comms related updatesTeravus Ovares2008-01-061-0/+21
|
* * Added some userserver glue for communications with the message server Teravus Ovares2008-01-061-0/+116
* Added some code for the message server, fixed a few references and starting to flesh it out.