aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-04-22cleaning up, fixing warningsDr Scofield1-4/+4
2009-04-21* Comment out user profile cache update method for nowJustin Clarke Casey3-18/+24
2009-04-21* extend user cache update test to check data backendJustin Clarke Casey1-0/+3
2009-04-21* Add the ability to update profiles via the cache, so that cached profiles ↵Justin Clarke Casey3-1/+53
don't become stale * Add corresponding unit test
2009-04-18Addresses mantis #3485.diva1-2/+2
2009-04-18Commit agent to DB immediately after creation, for LLSD logins too. ↵diva1-0/+6
Addresses mantis #3471. Requires upgrade of User Server in grid mode for this fix to kick in.
2009-04-17add fix for LLSDVoiceAccountResponse to work with freeswitch (from RobSean Dague1-0/+10
Smart)
2009-04-17* Change inventory archiver module to use profile cacheJustin Clarke Casey1-1/+2
* Clean up some log messages
2009-04-17* Moved the DefaultConfig settings into already-existing ConfigSettingslbsa711-2/+2
2009-04-17* Extend get user profile test to cover retrieval by nameJustin Clarke Casey2-37/+28
2009-04-17* Some more work on refactoring configs;lbsa711-2/+2
* Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
2009-04-16* minor: Eliminate redundant argument in PreloadUserCacheJustin Clarke Casey1-2/+1
2009-04-16* Add name keyed cache to UserProfileCacheServiceJustin Clarke Casey1-42/+105
2009-04-14Fix a test-breakage introduced in r9144Homer Horwitz1-2/+2
2009-04-14Adds session authentication upon NewUserConnections. Adds user key ↵diva6-3/+75
authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
2009-04-14* Change simple asset cache test to manually pump the asset server rather ↵Justin Clarke Casey2-16/+28
than relying on another thread
2009-04-14Changing the CAP seed to be the string representation of a full UUID, ↵diva1-1/+4
instead of a trunkated UUID.
2009-04-14* Explicitly start the asset server thread so that unit tests can run single ↵Justin Clarke Casey5-36/+22
rather than multi-threaded (which may be behind the occasional test freezes)
2009-04-14* refactor: rename AssetCache.Initialize() to AssetCache.Reset() to avoid ↵Justin Clarke Casey1-43/+40
having Initialise() and Initialize() in the same class - very difficult to read.
2009-04-14Formatting cleanup.Jeff Ames1-5/+5
2009-04-14This was needed for the prior commit.diva1-0/+24
2009-04-13* Some more experimental work on distributed assets. Nothing hotwired yet.lbsa714-7/+18
* Introduced preprocess step in FetchAsset (Might revert this later) * Some minor CCC * Added actual implementation of GetUserProfile( uri ) and the corresponding handler to OGS1. * Introduced non-functioning GetUserUri( userProfile) awaiting user server wireup (this might move elsewhere)
2009-04-09* Added some more experimental code; nothing wired in so far.lbsa712-14/+127
2009-04-08* Introduced some experimental code with regards to asset data substitutionlbsa714-3/+65
2009-04-08* Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey2-4/+4
as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
2009-04-06Update svn properties.Jeff Ames1-631/+631
2009-04-05Added CreateObject(regionhandle, userID, itemID) to post objects that are to ↵diva3-1/+171
be fetched from the user's inventory server and rezzed in the region. Added all code necessary to fetch the item and the asset, and rez it inworld. The access to the item is uncap-ed and unverified -- I may place it later either under a cap or with auth verification. But in this model regions don't have the user's inventory, so they would have to guess the item IDs. Added safemode config to Standalone Hypergrid, similar effect to AllowRegionAccessToInventory in Inventory Server. Everyone should have these vars set to their default values except me!
2009-04-05* Fixed copyright headers on HyperGrid source files. (Now match the rest of ↵Adam Frisby2-50/+48
OpenSim, license text is unchanged) * Added Bitmap[,] to IParcel for MRM
2009-04-04DST setting wasn't transferred to client, leading to wrong time display.Homer Horwitz1-1/+1
2009-04-04Remove some Mono warnings.Homer Horwitz1-2/+2
2009-04-03Added one more delegate to Caps, and a few guards, so that these objects can ↵diva2-14/+42
be used from more than just Scenes. Added the NewFileAgentInvengory cap to HGInventoryService.
2009-04-01More refactoring. This time extracting the client-side of ↵diva1-0/+555
RESTInterregionComms into a RegionClient class.
2009-04-01* Upped trunk version number to 0.6.4 as we just tagged 0.6.4-releaselbsa711-1/+1
2009-04-01Added AllowLoginWithoutInventory to LoginService, to be overwritten in ↵diva3-15/+41
subclasses. Default is false. HGLoginAuthService sets it true. Better error handling dealing with inventory service faults.
2009-03-31* Refactored out and de-duplicated Base64ToString(string)lbsa711-3/+4
* Fixed minor typo
2009-03-31Update svn properties, add copyright header, formatting cleanup.Jeff Ames5-2092/+2117
2009-03-30HGInventoryService now uses the actual authority portion of the user's key ↵diva3-1159/+1160
to verify the key.
2009-03-30Sigh. Manual data typing grief.diva3-18/+20
2009-03-29Added Authorization client code that interfaces with HGLoginAuthService. ↵diva3-21/+192
Improved error handling in HGLoginAuthService. Instrumented HGInventoryService so that it can interface both with local and remote user and asset services.
2009-03-29Another bit of refactoring to try to make sense of ↵diva5-2083/+2105
OpenSim.Framework.Communications. Everything that looks like a service, with service handlers, moved to .Services -- i.e. LoginService and Response, and GridInfoService. The rest of the changes were to adapt to the new locations of those files.
2009-03-29Moved some files around, so that it's easier to share code between ↵diva2-1/+637
standalone and the grid services. Should not affect any functionality.
2009-03-26Forgot to comment an unnecessary log message on my last commit.diva1-2/+2
2009-03-26Notecard updates bypassing the regions. (HGStandalone only)diva1-1/+7
2009-03-26Small refactoring in Caps, no functional changes.diva1-5/+25
2009-03-26* Minor fixes, inverted an if for readability and introduced a virtual ↵lbsa711-4/+20
pre-process step on the asset cache
2009-03-25cleanupDr Scofield1-1/+0
2009-03-24* minor: remove a couple more compiler warningsJustin Clarke Casey1-4/+0
2009-03-24Added the login region's http to the login response.diva2-32/+18
2009-03-24From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield1-13/+9
Changes to AssetCache and DynamicTextureModule to eliminate opportunities for lost texture updates.
2009-03-24Preparing the loginauth service for gridmode logins.diva1-0/+5