aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimMainConsole.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Refactor additional stats collection common code into base opensim serverJustin Clarke Casey2008-05-141-14/+1
| | | | | | * If extra stats not sent to the viewer are available on an opensim server, they are now uniformly accessible using the 'show stats' command
* *Complete redo of the permissions modulemingchen2008-05-131-8/+0
| | | | | | *Removed hardcoded permissions checks *Added permissions checks where needed
* * Fix opensim region server shutdown.Justin Clarke Casey2008-05-091-26/+0
|
* * Spring cleaning, round 3029Adam Frisby2008-05-081-1/+1
|
* * For no good reason (since there are a hundred million other things to ↵Justin Clarke Casey2008-05-071-36/+1
| | | | | | | | fix), change formatting of version information printed to the log * Push printing down into OpenSimMain so both console and consoleless configurations will get it
* From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey2008-05-071-3/+50
| | | | | | | | Implements the show version command. If you type show version at the console, you will get the revision that opensim is running, assuming you have the .svn/entries file in your base directory (e.g. you are running from code extracted from our SVN repository) A patch to also send this to the client should follow shortly
* * Move shutdown processing to base OpenSimServer, overriding the method ↵Justin Clarke Casey2008-05-071-11/+15
| | | | | | | | where appropriate * This also means that the command quit (as well as shutdown) will now close down grid servers (instead of only being in place for the region server)
* * More refactorings of UDPServer.Adam Frisby2008-05-021-1/+0
| | | | | | * Removed all references where possible. * Renamed lots of variables from UDPServerXYZ to clientServerXYZ
* * Commit 2/3 - Please dont attempt to update to this revision until all 3 ↵Adam Frisby2008-05-021-55/+5
| | | | are in.
* * In ur code. Making it static.Adam Frisby2008-05-011-2/+2
| | | | | * Converted a bunch of functions to static functions.
* * Assorted spring cleanings.Adam Frisby2008-05-011-21/+11
|
* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-281-0/+716
Note: This is the first part of some changes from Dr Scofield to support console-less operation of an OpenSim region server. The changes are not yet complete. * refactors OpenSimMain into two classes: OpenSimMain and OpenSimMainConsole. OpenSimMainConsole derives from OpenSimMain and basically is the "old" OpenSimMain * drops StartConsole from RegionApplicationBase (was only called from the "old" OpenSimMain anyhow) * reverts the changes to TryGetScene(string, out scene) as that seems to work perfectly fine * adds a check to region-remove to see whether m_sceneManger.CurrentScene is non-null before comparing it against the region-to-be-removed