aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseOpenSimServer.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Added "show queues" command that shows throttling queues for all clients.lbsa712008-12-181-1/+1
| | | | | *** This only works for LLCLientView at the moment ***
* Made BaseOpenSimServer.ShutdownSpecific() public. As the ↵MW2008-12-021-1/+1
| | | | OpenSimBase.Shutdown() includes a Environment.Exit(0); which is not always wanted when shutting down, like from a windows service.
* Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker2008-11-191-4/+1
| | | | | | libOMV.
* Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker2008-11-191-1/+4
| | | | | | | | | release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366
* * Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey2008-11-171-4/+1
| | | | | | | | * Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly
* * minor: add interface version to 'show version' command outputJustin Clarke Casey2008-11-171-1/+4
|
* * Implement basic region filtering as described in ↵Justin Clarke Casey2008-11-111-19/+0
| | | | | | | | | | | | https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html * This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
* * Instead of putting 0.5.11.00000 if there is no revision, just put 0.5.11 ↵Justin Clarke Casey2008-10-291-1/+1
| | | | | | | | | instead * This is to make things less confusing to users (and maybe a little easier to do future version filtering for grid connections) * If there's disagreement about this, then please say so (preferably in the opensim-dev mailing list)
* * minor: remove mono compiler warningsJustin Clarke Casey2008-10-281-1/+1
|
* * Apply http://opensimulator.org/mantis/view.php?id=2482Justin Clarke Casey2008-10-281-3/+17
| | | | | | * Stop 'show threads' throwing an exception if a thread is dead
* * refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey2008-10-031-2/+9
| | | | for consistency's sake
* * minor: restore the standard startup logo text now I understand why things ↵Justin Clarke Casey2008-10-031-1/+1
| | | | were appearing in the wrong order
* * oops, fix region startup to be in the correct sequence (though it appeared ↵Justin Clarke Casey2008-10-031-1/+1
| | | | to work anyway)
* * For shits and giggles, print out the time taken for a server to start up ↵Justin Clarke Casey2008-10-031-0/+4
| | | | | | | | (which doesn't include stuff such as script starting time on the region server). * Yes, you could work this out from timestamps in the logs, but that's far too much work
* * refactor: make startup a template methodJustin Clarke Casey2008-10-031-2/+9
|
* Mantis#2017. Thank you kindly, Tyre, for a patch that solves:Charles Krinke2008-09-251-10/+3
| | | | | | | | | | Check the client dialog box (from top menu) WORLD / REGION ESTATE / REGION tab. The client dialog box seems to have a hard limit of about 32 characters per line available for displaying the region version number. Our regions are sending a string which is greater than the limit, causing the client to wrap the text and look ugly.
* * Complete refactoring accidentally left unfinished so that all server help ↵Justin Clarke Casey2008-09-151-15/+1
| | | | requests flow through the ShowHelp() method
* Changed "show users" command to display only root agents, "show users full" toHomer Horwitz2008-09-121-5/+5
| | | | | | display root and child agents (mantis #2171).
* Update svn properties, formatting cleanup.Jeff Ames2008-08-281-9/+9
|
* * Append thread information on to the end of period diagnostics informationJustin Clarke Casey2008-08-251-2/+5
| | | | | | * This is working towards finding out why many more client threads are hanging about on wright plaza than there are actual agents
* * minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey2008-08-251-15/+29
| | | | than displays information directly
* Update svn properties, formatting cleanup.Jeff Ames2008-08-191-4/+4
|
* * It appears that sometimes some IClientAPI reference is not being released, ↵Justin Clarke Casey2008-08-181-0/+30
| | | | | | | | | resulting in continual execution of the CheckConnectivity timer method * For now, just turn off this timer when we close the connection * Also some minor help refactoring creeps in to this revision.
* Formatting cleanup.Jeff Ames2008-08-181-23/+23
|
* * Insert a new 'set log level [level] command on the console'Justin Clarke Casey2008-08-161-5/+80
| | | | | | | | | * The primary immediate use is to provide a means of temporarily reducing log output on the console when executing console commands * Changing the log level on the console is not permanent and does not affect the log information being put into OpenSim.log * This could have been done by putting in a threshold level on the Console appeneder in OpenSim.exe.config and implementing config watching in the code. * But I think that it's a little more user friendly to make this doable via the console.
* Thanks, BlueWall, for a patch that:Dahlia Trimble2008-08-141-1/+1
| | | | | Binary distributions of OpenSim are not able to get the version info because they lack the ../.svn/entries file. This file exists in the ./bin./svn directory, which would be in a binary distribution. The included patch changes the path from ../.svn/entries to .svn/entries, which allows the version information to be show in "help/about"
* * Register main thread as console thread with thread trackerJustin Clarke Casey2008-08-011-0/+4
|
* * minor: get rid of count number from 'show threads' display since they all ↵Justin Clarke Casey2008-08-011-12/+1
| | | | have IDs
* * minor: Make create user command appear on the region console only if the ↵Justin Clarke Casey2008-07-221-0/+1
| | | | region is running standalone
* * Move thread tracking code to base opensim server so that it's available ↵Justin Clarke Casey2008-07-111-6/+31
| | | | | | | | | for all servers (UGAIM as well as Region) * This will work as long as those servers are actually registering any threads they use (does not include stuff plucked from the thread pool) * command is now "show threads" rather than threads
* Mantis#1685. Thank you kindly, Mjm for a patch that:Charles Krinke2008-07-081-1/+12
| | | | | | | | | The attached patch tries to read the SVN revision from local file "svn_revision" before checking "../.svn/entries". This allows simulators not running from the source tree to properly display the SVN revision, if the installer generates the "svn_revision" file.
* Minor formatting cleanup.Jeff Ames2008-06-181-1/+1
|
* * minor: Print out uptime as well as stats in periodic diagnostics logging, ↵Justin Clarke Casey2008-06-131-5/+27
| | | | so it's easier to tell which isntances each print out of information is from
* Update svn properties, clean up formatting, refactor out duplicate ↵Jeff Ames2008-06-131-11/+11
| | | | hard-coded port numbers.
* * Drop periodic stats logging back down to 60 minutes to reduce console spam. Justin Clarke Casey2008-06-111-1/+1
| | | | | | | * Please feel free to comment if the periodic logging is causing you problems in some way - I'm loathe to add yet another switch to OpenSim.ini but will if it proves necessary
* * Add 'show info' command to all servers, which prints the directory in ↵Justin Clarke Casey2008-06-111-2/+16
| | | | | | | | which the server was started * This is potentially useful if you're using screen on a region console without knowing where it was originally started from
* * minor: Reduce statistic log snapshots to every 20 minutes to get more ↵Justin Clarke Casey2008-06-101-1/+1
| | | | information
* * If a server has statistics, print these out to the log every hour to get ↵Justin Clarke Casey2008-06-101-0/+21
| | | | | | | | some idea of how these evolve * When returning GC.GetTotalMemory(), force collection first in order to get more accurate figures
* Formatting cleanup, minor refactoring, svn properties.Jeff Ames2008-06-041-15/+15
|
* * experimental: Make OpenSim archiver save and reload all prim textures when ↵Justin Clarke Casey2008-06-021-2/+2
| | | | not all faces have the same texture
* * Add 'show version' help information into base OpenSim serverJustin Clarke Casey2008-06-021-1/+2
|
* * Move most bookending startup/shutdown messages to BaseOpenSimServer so ↵Justin Clarke Casey2008-06-011-7/+6
| | | | they appear in non-console servers too
* * Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey2008-06-011-1/+1
| | | | | | | | must remember to nant clean * Hook all server startups into base opensim server startup method
* * Move log version printing up into BaseOpenSimServerJustin Clarke Casey2008-06-011-4/+14
|
* * Make version information common to all serversJustin Clarke Casey2008-05-311-0/+82
| | | | | | * Now all servers respond to the "show version" command on the console
* * Implements UserServer logoff in a few situationsTeravus Ovares2008-05-311-0/+1
| | | | | | | * User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
* Formatting cleanup.Jeff Ames2008-05-161-14/+14
|
* * Refactor additional stats collection common code into base opensim serverJustin Clarke Casey2008-05-141-1/+18
| | | | | | * If extra stats not sent to the viewer are available on an opensim server, they are now uniformly accessible using the 'show stats' command
* Formatting cleanup.Jeff Ames2008-05-141-3/+3
|
* From: Alan M Webb <awebb@vnet.ibm.com>Justin Clarke Casey2008-05-121-6/+23
| | | | | | | | This patch just tightens up console handling in BasOpenSimServer and removes (or redirects) a couple of messages that were being issued using Console.Writeline.