aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/ServerBase.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-04-09If OpenSimulator is writing a PID file and finds the file already present on ↵Justin Clark-Casey (justincc)1-0/+5
startup, logging an error since this is commonly due to an unclean shutdown. Unclean shutdown can cause constantly moving objects to disappear if an OAR has just been loaded and they have not reached persistence time threshold, among other problems.
2013-03-14Log same environment information to Robust log as is already done for ↵Justin Clark-Casey (justincc)1-0/+20
simulator logs, for debug purposes
2013-01-23Implement get version RemoteAdmin callMelanie1-2/+2
2012-11-23Make "show threads" and "thread abort" console commands available on all serversJustin Clark-Casey (justincc)1-0/+92
2012-11-23Make "force gc" console command available across all serversJustin Clark-Casey (justincc)1-0/+12
2012-11-23Make "show version" console command available across all serversJustin Clark-Casey (justincc)1-0/+7
2012-11-22Factor out command script code.Justin Clark-Casey (justincc)1-2/+50
This also allows comments in command scripts (lines starting with ;, # or //) to be used across all servers
2012-11-22Make "config show/set/get/save" console commands available on all serversJustin Clark-Casey (justincc)1-3/+137
2012-11-22Factor out common pid file creation and removal code.Justin Clark-Casey (justincc)1-5/+46
Log path at which pid file is created or reason for failure to create.
2012-11-22Add "get log level" command - this returns the current server session ↵Justin Clark-Casey (justincc)1-19/+31
console logging level. This supersedes getting information by calling "set log level" without a 4th argument, which is confusing.
2012-11-22Make "set log level" command available across all serversJustin Clark-Casey (justincc)1-0/+31
2012-11-22Make "show info" command available across all serversJustin Clark-Casey (justincc)1-2/+182
This helpfully lists version information, startup location and console log level
2012-11-22Factor out common registration of "show uptime" commandJustin Clark-Casey (justincc)1-0/+12
2012-11-22factor out common HandleShow code for "show uptime"Justin Clark-Casey (justincc)1-0/+50
2012-11-22refactor: Factor out copy/pasted server uptime report codeJustin Clark-Casey (justincc)1-18/+20
2009-04-14Update svn properties.Jeff Ames1-56/+56
2009-04-11* Minor MRM CleanupAdam Frisby1-56/+56
* Interfaces now live in Interfaces subdirectory. * Namespace does not yet reflect this change. * Final namespace for MRMs will probably sit somewhere around OpenSim.Extend.MRM[?]
2009-04-06Add copyright headers, formatting cleanup.Jeff Ames1-1/+28
2009-04-06Update svn properties.Jeff Ames1-29/+29
2009-04-05* Implements ISocialEntity - this represents the class of "user-like" ↵Adam Frisby1-1/+0
objects such as Users, Groups, etc. Destined to be used as the return value of any "Owner" properties. * Implements basic "SEUser" class which implements Avatar/Agent SE functions (primitive).
2009-04-04* More fiddling with MRM IPersistence, now stores <T> instead of Object.Adam Frisby1-4/+5
2009-04-04* Changed IPersistence interface so that passing the MRMBase is unessecary.Adam Frisby1-6/+4
2009-04-03* Implements "ID" semi-global within MRM scripts. This is tied to the 'state ↵Adam Frisby1-0/+31
ID' for MRMs. * Implements IPersistence interface, allows simple KeyValue access for MRM scripts to a more permanent datastore.