aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-10-04Closing more streams even if things fail.Diva Canto1-6/+25
2009-10-02* Creates Util.UTF8 and switches some references of Encoding.UTF8 to ↵John Hurliman1-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?
2009-10-01Formatting cleanup.Jeff Ames4-5/+5
2009-10-01Formatting cleanup.Jeff Ames14-53/+53
2009-09-30Make create user to the Right Thing with regard to salting user passwordsMelanie1-2/+4
2009-09-28Deleted some files that aren't being used anymore.Diva Canto2-130/+0
2009-09-26Poof! on LocalBackend. CommsManager.GridServices deleted.Diva Canto1-5/+0
2009-09-26First pass at the heart surgery for grid services. Compiles and runs ↵Diva Canto1-7/+9
minimally. A few bugs to catch now.
2009-09-24Allow load/save iar password checks to be done in grid modeJustin Clark-Casey (justincc)3-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.
2009-09-23minor: remove double initialization of user appearance module in ↵Justin Clark-Casey (justincc)1-2/+3
Grid.UserServer.Main
2009-09-09Add test to check behaviour if an iar is loaded where no user profile exists ↵Justin Clark-Casey (justincc)1-1/+6
for the creators Disable generation of temporary profiles for now, instead record loading user as creator
2009-09-02warnings safari.dr scofield (aka dirk husemann)1-1/+1
2009-08-28minor: formatting and commentsJustin Clark-Casey (justincc)1-1/+12
2009-08-26* Another attempt at fixing the random spurious test error.Teravus Ovares (Dan Olivares)2-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.
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto1-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.
2009-08-22Moved AuthedSessionCache to where it is used -- Grid/InventoryServer.Diva Canto2-650/+0
2009-08-19Fixing a spot I missed in assets. Switching Grid to the new naming schema ↵Kunnis2-3/+3
with Store/Get
2009-08-19Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto1-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).
2009-08-19A better purge of trash folder.Diva Canto2-2/+4
2009-08-17Added one conditional missing on login, for creating inventory if it doesn't ↵Diva Canto1-1/+13
exist already. This hopefully fixes the master avatar problems on standalone.
2009-08-16uh. how about *really* removing it, and not just write a comment above, hey ↵Diva Canto1-1/+1
diva?
2009-08-16Remove the call to ResetAttachments upon login. The info in the DB should ↵Diva Canto1-1/+3
always have {itemID, assetID}.
2009-08-13Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto1-0/+5
2009-08-13Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto3-11/+11
starting to get on my nerves.
2009-08-11Re-adding a conditional in UserManager that was removed with arthusv's ↵Diva Canto1-1/+1
commit. Changing new inventory ops to POST.
2009-08-11Establish CachedUserInfo.OnInventoryReceived event so that region/test ↵Justin Clark-Casey (justincc)2-47/+68
inventory code can be written with the async inventory fetch
2009-08-11* Improves SceneSetupHelper to allow the tester to choose a real or mock, ↵Arthur Valadares3-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.
2009-08-10Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto1-0/+10
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto2-2/+2
2009-08-10Last piece of cleaning up old inventory. Old IInventoryServices and ↵Diva Canto3-258/+2
ISecureInventoryService interfaces removed.
2009-08-10Conditional to prevent a null ref in tests. The tests may still not pass.Diva Canto1-1/+1
2009-08-10First pass at cleaning up old OGS1 and Local Inventory: removed ↵Diva Canto1-114/+0
everything-inventory in CommsManager, which wasn't actively used anymore.
2009-08-10AssetCache.addin.xml seems to be historical junk too. Removed.Diva Canto1-17/+0
2009-08-10More clean up from asset cache legacy. None of these classes are used anymore.Diva Canto4-1066/+0
2009-08-09Removed HGInventory out of core. This is part of HG2, which it now being ↵Diva Canto1-744/+0
developed outside.
2009-08-05* Remove some mono compiler warningsJustin Clark-Casey1-2/+2
2009-07-10* minor format changes and message additionsJustin Clarke Casey1-6/+20
2009-07-10* minor: standardize some logging messagesJustin Clarke Casey1-7/+10
2009-07-10* minor: Make GridCommon.ini.example refer to inventory service rather than ↵Justin Clarke Casey1-9/+27
asset where appropriate * Send debug level notice to console if a user fails authentication
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker1-17/+3
Change all uses of the HttpServer properties to use the new singleton
2009-07-07* Allowing LLSD logins to do silent logout of last hung session on ↵Arthur Valadares1-8/+17
standalone only, following the already implemented XMLRPC behavior
2009-07-04Fix previous commitMelanie Thielker1-0/+1
2009-07-04Add the new field agent_access_max. Without it being set to "A", viewers fromMelanie Thielker1-0/+9
1.23 prevent the removal of underwear.
2009-06-27Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble2-3/+3
this.
2009-06-18* Corrected CAPS namespacesArthur Valadares2-3/+3
* "luke, use the sed"
2009-06-18Moved OpenSim/Framework/Communications/Capabilities up to ↵diva26-3286/+0
OpenSim/Framework/Capabilities. Didn't change the namespace because VC# is not helping, and this would imply manually changing more than 50 files. So the namespace is still OpenSim.Framework.Communications.Capabilities, to be cleaned up later by someone with more energy.
2009-06-17Implementation of a simple authentication service + in connector in route to ↵diva1-0/+2
making HGInventory (client access) work in standalone again. This is the refactoring of what was/is there, but done in the new model. Not complete yet, but key authentication works. It should be enough to make HGInventory work again soon.
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva1-1/+1
2009-06-11* Reinstating UserProfileCacheServiceTests. One test still fails ↵Arthur Valadares1-54/+98
(TestUpdateFolder)
2009-06-11InterServiceInventoryService references *almost* completely removed from the ↵diva3-8/+146
simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :)