aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/Application.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-12-15Update log4net to avoid log4shell security hole.onefang1-0/+3
Alledgedly.
2019-08-09Make the DNS cache timeout configurable.Melanie1-1/+1
In containerized environments, DNS is simulated. It can change several times per second as containers move around. The hardcoded timeout was too long for a container environment.
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-30/+39
2018-09-27more on culture issuesUbitUmarov1-1/+5
2017-05-29change servicePoint dns expire also to 5min, let the endpoints expire slide. ↵UbitUmarov1-2/+1
This should reduce impact of absurd dns fails observed on my test ubuntu VM
2017-05-24give up on the code to stop AsyncCommandManager. It fails with many scripts ↵UbitUmarov1-1/+1
running, and its only done deep on exit code. It is a backgroud thread should not block exit and never did
2017-05-23 no all mono versions know DnsRefreshTimeoutUbitUmarov1-1/+2
2017-05-23 remember mono about the default for DnsRefreshTimeoutUbitUmarov1-0/+3
2017-05-12 a bit more on ServicePointManagerUbitUmarov1-3/+4
2017-05-12lower connection limits againUbitUmarov1-1/+5
2017-05-12soem changes on connections limitsUbitUmarov1-1/+1
2017-01-05Massive tab and trailing space cleanupMelanie Thielker1-29/+29
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-10/+57
2015-06-05Typo FixH-H-H1-1/+1
Signed-off-by: Diva Canto <diva@metaverseink.com>
2014-09-17turn off Nangle on users of ServivePointManager like webrequestsUbitUmarov1-0/+1
2013-08-09minor: Consistently log IOCP for IO completion thread startup log ↵Justin Clark-Casey (justincc)1-3/+3
information instead of mixing this with "IO Completion Threads"
2013-08-05At OpenSimulator startup, print out default min built-in threadpool threads ↵Justin Clark-Casey (justincc)1-14/+27
as well as max. Make it clear that we only try to adjust max, and log at warn level if this fails. Other minor logging cleanup.
2013-06-17Make general server stats available on the robust console as well as the ↵Justin Clark-Casey (justincc)1-0/+1
simulator console This means the "show stats" command is now active on the robust console.
2013-02-10Additional ThreadPool worker and IOCP thread startup logicAllen Kerensky1-6/+39
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-09-30Add using clause I missedMelanie1-0/+1
2012-09-30Allow up to 12 simultaneous connections to a given endpoint rather than 2Melanie1-0/+1
2012-09-14Allow some more connections to try to ease lag.Melanie1-1/+1
2012-09-09Reduce max concurrent endpoint connections from 50 to 6 (was 2 before)Melanie1-1/+1
2012-09-07Set the maximum number of concurrent connections to a service endpointMelanie1-0/+2
to 50. This doesn't work on stock mono but it works in Avination and also under Windoze.
2012-07-06Log MONO_THREADS_PER_CPU value on simulator startup, or "unset" if it is not setJustin Clark-Casey (justincc)1-2/+6
2011-07-29Temporarily put in a log line which shows which locale the user is running in.Justin Clark-Casey (justincc)1-0/+4
2011-06-01Adding boolean alias for commandline switches like -save_crashes=yesMakopoppo1-0/+2
2011-06-01Fix: The command line switches 'save_crashes' and 'crash_dir' haven't ↵Makopoppo1-0/+2
actually worked
2011-04-08trivial whitespace removal to trigger a panda rebuildJustin Clark-Casey (justincc)1-11/+3
2010-09-12Formatting cleanup.Jeff Ames1-1/+1
2010-05-16* Revert last commit for now at Melanie_T's request.Teravus Ovares (Dan Olivares)1-1/+2
* Additional ways of configuring opensim break with this
2010-05-15* Add User Friendly Configuration File Exists check. If OpenSim.ini and ↵Teravus Ovares (Dan Olivares)1-1/+115
either StandaloneCommon.ini or GridCommon.ini don't exist in various casings then offer to copy the files for the user while warning them that they're missing out if they don't read the files.
2010-01-31Cleaned up configuration. 'gridmode' and 'hypergrid' are gone, as well as ↵Diva Canto1-1/+0
lots of other obsolete configs.
2009-10-06Checks the number of ThreadPool and IOCP threads on startup and bumps up the ↵John Hurliman1-0/+12
numbers to .NET defaults of 500/1000 if need be
2009-10-04* MySQL data tests now pass by fixing a bad fix for a bad cast on the asset ↵John Hurliman1-7/+4
Local member in MySQLAssetData * First pass at applying the using(){} pattern to IDisposable objects. Always use the using pattern on IDisposable objects whenever possible, do not manually call .Close() or .Dispose() unless there is no other way to write the code. This pass mostly covers OpenSim.Data.MySQL, and should have no functional change (tests still pass)
2009-10-01Formatting cleanup.Jeff Ames1-1/+1
2009-08-17Add the ability to use -console=rest to the region server. UserMelanie1-1/+2
and pass are specified the same way as for the ROBUST server
2009-08-12* minor: CommentsTeravus Ovares (Dan Olivares)1-1/+32
2009-07-24* minor ccclbsa711-0/+3
2009-06-01Only save crashes to disk if save_crashes in OpenSim.ini is true (false by ↵Jeff Ames1-17/+20
default).
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-19* minor: Tweak the command exception catcher of last resort to make a little ↵Justin Clarke Casey1-1/+1
more sense
2009-04-27Getting rid of -hypergrid=true on the command line. This config now goes ↵diva1-7/+1
inside OpenSim.ini in the Startup section. This makes the HG compatible with -background, and prepares the way for further work on HG-related config vars. Might help with mantis #3527.
2009-04-03- adding -logconfig option to allow configuration of log4net fromDr Scofield1-2/+14
log4net config file other then bin/OpenSim.exe.config - moving ArgvConfigSource initialization up to allow for configuration of XmlConfigurator.Configure()
2009-03-26* Apply http://opensimulator.org/mantis/view.php?id=3343Justin Clarke Casey1-1/+0
* Removes long unused -useexecutepath switch * Thanks coyled
2009-03-10* Cleanup and CCC (Code Convention Conformance)lbsa711-5/+6
2009-02-27Added support for reading ini files from a (optional) config folder. This ↵MW1-0/+1
allows the spliting up of opensim.ini into multiple ini files. The ini files in this folder are loaded after the masterini file (if that is set) and before opensim.ini. The default folder it looks for and searches is "bin\config", but that can be set by using the command arg "-inidirectory=<path>" (path is local to bin\) when starting up opensim.exe.
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-4/+4
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
2009-02-12* optimized usings.lbsa711-2/+0
2009-02-10* Stop OpenSim crashing if an exception from a command makes it right up to ↵Justin Clarke Casey1-2/+8
the top of the stack