aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridServerBase.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * optimized usings.lbsa712009-02-121-1/+0
|
* Add proper handling for shared vs. unshared modules to the commandMelanie Thielker2009-02-101-3/+5
| | | | | | | | interface. Shared modules will now only get added once, so the command handler is called once per module, not once per scene. Removal of scenes has no adverse effects. Nonshared modules will be called for each scene.
* Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker2009-02-071-29/+34
| | | | | | | | | line editing, context sensitive help (press ? at any time), command line history, a new plugin command system and new appender features thet let you type while the console is scrolling. Seamlessly integrates the ICommander interfaces.
* 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.
* * Implement basic region filtering as described in ↵Justin Clarke Casey2008-11-111-1/+1
| | | | | | | | | | | | 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
* * Apply a modified version of the part of ↵Justin Clarke Casey2008-10-131-3/+30
| | | | | | | | | | | | | | http://opensimulator.org/mantis/view.php?id=2361 that allows region registration to be enabled/disabled on the grid server * Region registration is enabled by default in the configuration unless the user chooses otherwise * On the console * show status - shows grid status * enable-reg - enables region registration to the grid * disable-reg - disables region registration * Enabling or disabling region registration will not affect any other grid functions or regions already on the grid
* Add the missing bits for the new region-search:Homer Horwitz2008-10-031-0/+1
| | | | | | | | | | | | | | | | - Added lookup in the data-layer - MySQL works - SQLite doesn't have a grid-db, so it won't work there - I added MSSQL-code to the best of my knowledge; but I don't know MSSQL :-) - Added the plumbing up to OGS1GridServices. This speaks with the grid-server via XMLRPC. - Modified MapSearchModule to use the new data. It's backward compatible; if used with an old grid-server, it just returns one found region instead of a list. - Refactored a bit. Note: This updates data, grid-server and region code. No new files.
* * refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey2008-10-031-3/+1
| | | | for consistency's sake
* * refactor: make startup a template methodJustin Clarke Casey2008-10-031-3/+1
|
* * Reinstate grid receive and send keys to user server configJustin Clarke Casey2008-08-091-6/+1
| | | | | | | * Looks like these weren't so unused after all - oops! * Remove message from grid server config
* Thanks, sempuki, for a patch that moves all grid plugins to new PluginLoader ↵Mike Mazur2008-07-181-2/+1
| | | | (issue 1763).
* Mantis#1682. Revert temporarily, Sempuki's mono addins patchCharles Krinke2008-07-111-1/+2
| | | | | while he studies the issues in Windows a little bit.
* Mantis#1682. Thank you kindly, Sempuki for a patch that:Charles Krinke2008-07-101-2/+1
| | | | | | Move control of Mono.Addins from source attributes to external XML files. This removes a lot of coupling of the source with Mono.Addins
* Mantis#1647. Thank you very much, Sempuki for a patch that:Charles Krinke2008-07-041-10/+6
| | | | | Updates the previous module loader work.
* Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke2008-06-271-18/+9
| | | | | | | | | | Currently module loading is done ad-hoc. I propose creating a simple loader class that leverages Mono.Addins (and perhaps the new .NET addins when they become available in mono). Attached is a basic patch for review that compiles into HEAD, but doesn't yet replace any existing ad-hoc loaders.
* Formatting cleanup, minor refactoring, svn properties.Jeff Ames2008-06-041-7/+7
|
* * Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey2008-06-011-2/+2
| | | | | | | | must remember to nant clean * Hook all server startups into base opensim server startup method
* * Propogate OpenSimMain hack to stop mono-addins scanning warnings to the ↵Justin Clarke Casey2008-05-311-0/+7
| | | | | | | | grid managing * This hack just temporarily sends console output to /dev/null when we make the relevant addins calls, restoring it afterwards
* let Grid Servers specify a connect string in their configuration.Sean Dague2008-05-281-1/+1
|
* * Minor: For no particularly good reason, make all console prompts conform ↵Justin Clarke Casey2008-05-161-1/+1
| | | | to the same prompt scheme
* Formatting cleanup.Jeff Ames2008-05-141-1/+1
|
* * As part of the region registration process, the grid service now requests ↵Justin Clarke Casey2008-05-131-5/+5
| | | | | | | | | | | | the status of the region using the region http uri just passed in * If the status cannot be retrieved, then the region startup will terminate. * The aim of this is for earlier detection of situations where the region can send messages out but cannot accept incoming requests (often due to firewall issues) * This is currently an extremely simplistic check which completely trusts whatever http uri is given by the region * This contact may be problematic, though since the user service needs to be able to contact the region http uri, it doesn't seem unreasonable for the grid to have to be able to do so too at this stage * This change will require a prebuild
* * Minor: Make some direct grid server console output into logged messages ↵Justin Clarke Casey2008-05-121-7/+10
| | | | instead
* * Fix opensim region server shutdown.Justin Clarke Casey2008-05-091-1/+1
|
* * Move shutdown processing to base OpenSimServer, overriding the method ↵Justin Clarke Casey2008-05-071-16/+5
| | | | | | | | 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)
* * Rolled back a few changes.Adam Frisby2008-05-011-32/+28
|
* * Cleaning code still.Adam Frisby2008-05-011-28/+32
|
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-5/+2
| | | | (this took a while to run).
* * Refactored out common http handler operationslbsa712008-03-281-34/+27
|
* Minor formatting / svn properties cleanup.Jeff Ames2008-03-251-6/+5
|
* XmlRpcCommand refactoringJohan Berntsson2008-03-241-1/+1
|
* Added a plugin loader in GridServerJohan Berntsson2008-03-241-1/+33
|
* Formatting cleanup.Jeff Ames2008-03-181-26/+25
|
* * made some privates protected lbsa712008-03-121-2/+2
|
* * Renamed Main.cs to GridServerBase.cslbsa712008-03-121-0/+179