aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/InterGrid (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-11-11Deleted 2 obsolete modules: OGSRadmin and OpenGridProtocol. They were still ↵Diva Canto2-1447/+0
IRegionModule's and they have been dead for a very long time, so no need to drag them along in this revamping of region modules.
2012-07-25Move Watchdog and MemoryWatchdog classes into OpenSim.Framework.Monitoring ↵Justin Clark-Casey (justincc)1-0/+1
with other monitoring code from OpenSim.Framework
2012-02-24Stop spurious scene loop startup timeout alarms for scenes with many prims.Justin Clark-Casey (justincc)1-1/+1
On the first frame, all startup scene objects are added to the physics scene. This can cause a considerable delay, so we don't start raising the alarm on scene loop timeouts until the second frame. This commit also slightly changes the behaviour of timeout reporting. Previously, a report was made for the very first timed out thread, ignoring all others until the next watchdog check. Instead, we now report every timed out thread, though we still only do this once no matter how long the timeout.
2011-10-25Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)2-0/+2
of the other way around. This is necessary so that code in HttpServer can use framework facilities such as the thread watchdog for monitoring purposes. Doing this shuffle meant that MainServer was moved into OpenSim/Framework/Servers Also had to make OpenSim.Framework.Console rely on OpenSim.Framework rather than the other way around since it in turn relies on HttpServer MainConsole and some new interfaces had to be moved into OpenSim/Framework to allow this. This can be reverted if parts of OpenSim.Framework stop relying on console presence (cheifly RegionInfo)
2011-05-01Broke down Caps.cs into a generic Caps object that simply ↵Diva Canto1-2/+2
registers/unregisters capabilities and a specific bunch of capability implementations in Linden space called BunchOfCaps. Renamed a few methods that were misnomers. Compiles but doesn't work.
2010-10-22Revert "Merge remote branch 'otakup0pe/mantis5110'"Justin Clark-Casey (justincc)1-2/+2
This reverts commit 21187f459ea2ae590dda4249fa15ebf116d04fe0, reversing changes made to 8f34e46d7449be1c29419a232a8f7f1e5918f03c.
2010-10-22Revert "* more url / hg cleanup"Justin Clark-Casey (justincc)1-2/+2
This reverts commit 58f75fa19d9aea18283ecdbd44559efb81781c9d.
2010-10-20* more url / hg cleanupJonathan Freedman1-2/+2
2010-10-11* more url / hg cleanupJonathan Freedman1-2/+2
2010-08-20minor: remove mono compiler warningJustin Clark-Casey (justincc)1-9/+9
2010-08-13minor: remove mono compiler warningsJustin Clark-Casey (justincc)1-17/+18
2010-03-19Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake1-1/+1
Scene and SceneGraph. This was the only change in this patch to keep it isolated from other recent changes to the same set of files.
2010-01-29Revert "Updates all IRegionModules to the new style region modules."Melanie2-72/+59
This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
2010-01-23Updates all IRegionModules to the new style region modules.Revolution2-59/+72
Signed-off-by: Melanie <melanie@t-data.com>
2010-01-11CommunicationsManager deleted.Diva Canto1-2/+0
2010-01-10NetworkServersInfo removed from CommsManager.Diva Canto2-10/+11
2010-01-08Inching ahead... This compiles, but very likely does not run.Diva Canto1-18/+20
2009-12-29Change teleports so the TeleportFlags are sent to the destination sim. ItMelanie1-1/+1
can now determine if a connection is from login, teleport or crossing. Needed for a meaningful banlines implementation
2009-12-06Getting rid of the dead field RootInventoryFolderId on UserProfileData, It's ↵Kunnis1-1/+0
not even stored in mysql. Signed-off-by: Melanie <melanie@t-data.com>
2009-10-22Implemented a Watchdog class. Do not manually create Thread objects anymore, ↵John Hurliman1-5/+10
use Watchdog.StartThread(). While your thread is running call Watchdog.UpdateThread(). When it is shutting down call Watchdog.RemoveThread(). Most of the threads in OpenSim have been updated
2009-10-13* Rewrote ClientManager to remove Lindenisms from OpenSim core, improve ↵John Hurliman1-1/+1
performance by removing locks, and replace LLUDPClientCollection * Removed the confusing (and LL-specific) shutdowncircuit parameter from IClientAPI.Close() * Updated the LLUDP code to only use ClientManager instead of trying to synchronize ClientManager and m_clients * Remove clients asynchronously since it is a very slow operation (including a 2000ms sleep)
2009-10-01Formatting cleanup.Jeff Ames1-2/+2
2009-08-16Misc cleanup.Jeff Ames1-7/+7
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2-4/+4
Change all uses of the HttpServer properties to use the new singleton
2009-06-18* Corrected CAPS namespacesArthur Valadares1-3/+3
* "luke, use the sed"
2009-06-10Formatting cleanup.Jeff Ames1-2/+2
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-31Add copyright headers, formatting cleanup, ignore some generated files.Jeff Ames1-3/+30
2009-05-31Update svn properties.Jeff Ames1-123/+123
2009-05-28* Tweak to aboveAdam Frisby1-1/+1
2009-05-28* Makes grid announcements more prominent.Adam Frisby1-1/+4
2009-05-28* Oops. Forgot Initialise needs tweaking between IRegionModule and ↵Adam Frisby1-0/+2
ISharedRegionModule.
2009-05-28* Converts recently added OGSRadmin to IRegionModule because I cant be arsed ↵Adam Frisby1-1/+17
figuring out Mono.Addins.
2009-05-28* Adds OGS RAdmin class. Adds primitive remote admin functions for ↵Adam Frisby1-0/+102
gridservers to perform on region servers. Used for grid-wide announcements, etc.
2009-05-12Thank you kindly, Patnad, for a patch that:Charles Krinke1-1/+13
This is to handle the changes in the v1.23 viewer of LL regarding the adult rating. With this patch a region can be changed to the adult rating from LL viewer v1.23 and above.
2009-05-05- moving banned check and public/private check toDr Scofield1-1/+9
Scene.NewUserConnection() - adding reason reporting this enforces estate bans very early on and prevents us from circulating client objects that we'd then have to retract once we realize that the client is not allowed into the region
2009-04-16* minor: Eliminate redundant argument in PreloadUserCacheJustin Clarke Casey1-1/+1
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-2/+2
* 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-12large scale fix for svn props after "the great refactor"Sean Dague1-21/+21
2009-02-12* optimized usings.lbsa711-31/+26
2009-02-10this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield1-0/+1273
NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator