aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Changed the misc. methods calling ThreadPool.UnsafeQueueUserWorkItem() to ↵John Hurliman2009-10-211-1/+1
| | | | | | Util.FireAndForget() * Changed Util.FireAndForget() to use any of five different methods set with async_call_method in the [Startup] section of OpenSim.ini. Look at the example config for possible values
* * Removed OpenSim.Data.NHibernateJohn Hurliman2009-10-191-1/+1
| | | | * Replaced calls to ThreadPool.QueueUserWorkItem() with ThreadPool.UnsafeQueueUserWorkItem() since OpenSim does not use Code Access Security sandboxing
* Merge branch 'master' into htb-throttleMelanie2009-10-121-5/+5
|\
| * Use Util.UTF8 instead of creating a new heap object every time.Diva Canto2009-10-101-5/+5
| |
* | Merge branch 'master' into htb-throttleMelanie2009-10-101-23/+12
|\ \ | |/ | | | | | | This is hand-edited to not let master changes creep into here and may cause a somewhat rocky merge to master later.
| * A slight improvement on name fetching -- using the local name cache, since ↵Diva Canto2009-10-091-0/+6
| | | | | | | | it exists.
| * Use the cache, Luke!Diva Canto2009-10-091-25/+8
| |
* | Calling .Close() on AutoResetEvent and ManualResetEvent (those classes ↵John Hurliman2009-10-092-3/+4
|/ | | | contain an unmanaged resource that will not automatically be disposed when they are GCed), and commenting out some ManualResetEvents that are not in use yet
* * One more debug message on FetchInventoryDescendantsDiva Canto2009-10-061-17/+62
| | | | * More streams close on finally
* Revert "Rewrote parts of the code that were double-locking different ↵Melanie2009-10-071-27/+39
| | | | | | objects. This is about half of the code base reviewed." This reverts commit e992ca025571a891333a57012c2cd4419b6581e5.
* Rewrote parts of the code that were double-locking different objects. This ↵Diva Canto2009-10-061-39/+27
| | | | is about half of the code base reviewed.
* Corrected words in error message.Diva Canto2009-10-061-2/+2
|
* Closing more streams even if things fail.Diva Canto2009-10-041-6/+25
|
* Merge branch 'diva-textures-osgrid'Melanie2009-10-041-1/+1
|\
| * * Creates Util.UTF8 and switches some references of Encoding.UTF8 to ↵John Hurliman2009-10-021-1/+1
| | | | | | | | | | | | Util.UTF8 (not all references were switched since not all OpenSim libraries reference OpenSim.Framework) * Shrinks the largest in-memory object, the LLRAW.HeightmapLookupValue struct (only used for exporting to LLRAW terrain files), to the minimum possible size. This seems to have the odd side effect of cutting the size of the two double[256,256] terrain objects in half. Possibly an alignment optimization?
* | Formatting cleanup.Jeff Ames2009-10-014-5/+5
| |
* | Formatting cleanup.Jeff Ames2009-10-0114-53/+53
| |
* | Make create user to the Right Thing with regard to salting user passwordsMelanie2009-09-301-2/+4
| |
* | Deleted some files that aren't being used anymore.Diva Canto2009-09-282-130/+0
| |
* | Poof! on LocalBackend. CommsManager.GridServices deleted.Diva Canto2009-09-261-5/+0
| |
* | First pass at the heart surgery for grid services. Compiles and runs ↵Diva Canto2009-09-261-7/+9
| | | | | | | | minimally. A few bugs to catch now.
* | Allow load/save iar password checks to be done in grid modeJustin Clark-Casey (justincc)2009-09-243-6/+47
| | | | | | | | | | This should allow load/save iar to work for grid mode as long as the grid user service is later than this revision Grid services of earlier revisions will always erroneously report incorrect password. This will be addressed shortly.
* | minor: remove double initialization of user appearance module in ↵Justin Clark-Casey (justincc)2009-09-231-2/+3
|/ | | | Grid.UserServer.Main
* Add test to check behaviour if an iar is loaded where no user profile exists ↵Justin Clark-Casey (justincc)2009-09-091-1/+6
| | | | | | for the creators Disable generation of temporary profiles for now, instead record loading user as creator
* warnings safari.dr scofield (aka dirk husemann)2009-09-021-1/+1
|
* minor: formatting and commentsJustin Clark-Casey (justincc)2009-08-281-1/+12
|
* * Another attempt at fixing the random spurious test error.Teravus Ovares (Dan Olivares)2009-08-262-0/+21
| | | | * This time it might be the listening socket thread from HttpServer aborting with a non blocking thread abort exception. Hopefully calling Stop() on MainServer.Instance will solve that.
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-221-0/+5
| | | | | | folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
* Moved AuthedSessionCache to where it is used -- Grid/InventoryServer.Diva Canto2009-08-222-650/+0
|
* Fixing a spot I missed in assets. Switching Grid to the new naming schema ↵Kunnis2009-08-192-3/+3
| | | | with Store/Get
* Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto2009-08-191-0/+5
| | | | operation. Moving a batch of items is a 1-time operation. Made it async anyway, so that the viewer doesn't wait in case the DB layer is dumb (which is the case currently).
* A better purge of trash folder.Diva Canto2009-08-192-2/+4
|
* Added one conditional missing on login, for creating inventory if it doesn't ↵Diva Canto2009-08-171-1/+13
| | | | exist already. This hopefully fixes the master avatar problems on standalone.
* uh. how about *really* removing it, and not just write a comment above, hey ↵Diva Canto2009-08-161-1/+1
| | | | diva?
* Remove the call to ResetAttachments upon login. The info in the DB should ↵Diva Canto2009-08-161-1/+3
| | | | always have {itemID, assetID}.
* Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto2009-08-131-0/+5
|
* Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto2009-08-133-11/+11
| | | | starting to get on my nerves.
* Re-adding a conditional in UserManager that was removed with arthusv's ↵Diva Canto2009-08-111-1/+1
| | | | commit. Changing new inventory ops to POST.
* Merged with origin, and resolved one conflict in LoginServiceTests.csDiva Canto2009-08-114-56/+83
|\
| * Establish CachedUserInfo.OnInventoryReceived event so that region/test ↵Justin Clark-Casey (justincc)2009-08-112-47/+68
| | | | | | | | inventory code can be written with the async inventory fetch
| * * Improves SceneSetupHelper to allow the tester to choose a real or mock, ↵Arthur Valadares2009-08-113-128/+15
| | | | | | | | | | | | | | | | inventory and asset, service modules. The boolean startServices was replaced with realServices string. If the string contains the word asset, it will start a real asset module, if it contains inventory, it starts a real inventory. Otherwise, it use mock (NullPlugin-like) objects, for tests that don't really need functionality. * SetupScene is now actually sharing the asset and inventory modules if the tester wishes to have multiple regions connected. To link regions, just start SetupScene with the same CommunicationManager for all scenes. SceneSetupHelper will hold a static reference to the modules and won't initialize them again, just run the scenes through the modules AddRegion, RegionLoaded and PostInitialize. * With the recent changes, both asset and inventory (and in the future, user) services should always be asked from the scene, not instantiated alone. The tests should reflect this new behavior and always start a scene.
* | Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto2009-08-101-0/+10
| | | | | | | | GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
* | Changed RequestRootFolder to GetRootFolderDiva Canto2009-08-102-2/+2
|/
* Last piece of cleaning up old inventory. Old IInventoryServices and ↵Diva Canto2009-08-103-258/+2
| | | | ISecureInventoryService interfaces removed.
* Conditional to prevent a null ref in tests. The tests may still not pass.Diva Canto2009-08-101-1/+1
|
* First pass at cleaning up old OGS1 and Local Inventory: removed ↵Diva Canto2009-08-101-114/+0
| | | | everything-inventory in CommsManager, which wasn't actively used anymore.
* AssetCache.addin.xml seems to be historical junk too. Removed.Diva Canto2009-08-101-17/+0
|
* More clean up from asset cache legacy. None of these classes are used anymore.Diva Canto2009-08-104-1066/+0
|
* Removed HGInventory out of core. This is part of HG2, which it now being ↵Diva Canto2009-08-091-744/+0
| | | | developed outside.
* * Remove some mono compiler warningsJustin Clark-Casey2009-08-051-2/+2
|