aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-08-01* correct bug from last commit - for now don't drop cached user profile when ↵Justin Clarke Casey1-0/+4
an agent is downgraded to a child agent * since upgrading to a root agent doesn't currently re-retrieve the user profile
2008-08-01* Drop cached inventory from the local region when a user crosses out into a ↵Justin Clarke Casey2-8/+21
remote region * May resolves inventory problems that occur when the user moves between two regions` * e.g. if the user moves to a second region, adds an inventory item, moves back to the original region then tries to manipulate that item * Not yet implemented for teleport
2008-08-01* minor: eliminate some unused variables in InventoryFolderImplJustin Clarke Casey1-2/+0
2008-07-31Apply updated patch from issue 1871. Thanks sempuki.Mike Mazur1-25/+25
2008-07-31* refactor: rearrange path inventory manipulation so that input tidying can ↵Justin Clarke Casey1-5/+50
be used for item paths as well
2008-07-31* refactor: eliminate unused SubFoldersCountJustin Clarke Casey1-11/+3
2008-07-31* allow inventory folders to be located by pathJustin Clarke Casey2-9/+55
* first pass method impl
2008-07-31* refactor: Change CachedUserInfo.HasInventory to HasReceivedInventory to ↵Justin Clarke Casey2-19/+18
make actual function clearer
2008-07-31* minor: reduce coupling by passing in only session id to CachedUserInfoJustin Clarke Casey2-3/+11
2008-07-31Thanks, sempuki, for a patch that moves all Grid Server's plugins toMike Mazur4-146/+114
PluginLoader. Fix issue 1871.
2008-07-29* refactor: move create user console command parsing down to OpenSim.cs from ↵Justin Clarke Casey1-46/+1
CommunicationsManager
2008-07-29Mantis#1849. Thank you kindly, Kinoc for a patch that:Charles Krinke2-31/+66
- LLSDLoginMethod should error out in similar way to XMLRPC login for already logged in condition - Have LLSDLoginMethod mirror the sequence of the XMLRPC for easier side by side compare - Log messages report which process XML or LLSD generated them for easier debugging
2008-07-25squasing warning.Dr Scofield1-3/+3
2008-07-25Thanks, lulurun, for a patch that adds an authenticated session cache to reduceMike Mazur1-0/+107
"check_auth_session" requests from inventory server to user server.
2008-07-24* refactor: Remove now redundant inventory server url being passed to ↵Justin Clarke Casey1-17/+4
GetInventorySkeleton
2008-07-24* Separate out OGS1 calls used between services (rather than from region to ↵Justin Clarke Casey1-7/+7
services) into a separate assembly to parallel OpenSim.Region.Communications.OGS1
2008-07-24* minor: Rename IInterGridInventoryServices since it's inter service rather ↵Justin Clarke Casey4-7/+7
than inter grid
2008-07-23* refactor: break out inter grid inventory services furtherJustin Clarke Casey5-38/+37
* more to follow
2008-07-23* refactor: split out inventory services which are only used between ↵Justin Clarke Casey2-19/+63
non-region services * more to follow
2008-07-23Update svn properties. Formatting cleanup. Remove a compiler warning.Jeff Ames2-2/+2
2008-07-23The new secure inventory server mode (in r5590) can now be disabled from ↵Johan Berntsson3-11/+114
OpenSim.ini. Default is to use the new mode.
2008-07-23adding files that were not included in r5589Johan Berntsson1-0/+125
2008-07-23thanks lulurun for a security patch that blocks unathorized access to the ↵Johan Berntsson3-8/+51
inventory server (see http://opensimulator.org/wiki/Security_vulnerability_brought_by_non-check_inventory_service)
2008-07-21added experimental packet tracker (LLPacketTracker.cs), which can be told to ↵MW1-3/+0
track a packet and if it hasn't been acked within a set time, trigger a IClientAPI event, that the application/scene can handle. Currently only terrain packet tracking is finished, Tracking for initial Prim packets (first full update for a prim) is being worked on. Future improvements would be to make it a more generic packet tracker with callback delegates instead of events. Add a test event handler (which would fire after a minute if a terrain packet hadn't been acked) to scene to handle the OnUnackedTerrain event, which currently just resends the terrain patch. The idea of this packet tracking is for the region level application to be able to know if the client stack gave up on sending a packet.
2008-07-12Patch #9146 (No Mantis)Melanie Thielker1-3/+4
Prevent an exception caused by inventory server fetch requests
2008-07-12Patches #9143 and #9144 (Mantis #1723)Melanie Thielker1-1/+8
Changes the permissions module to make scripts permissive only when intended Adds security checks to asset transfers to prevent hacked clients fron requesting script sources. Adds security checks to llClientView to verify all aspects of ownership and permissions for inventory based script retrieval.
2008-07-07* remove redundant sync locking in AssetServerBase since this is already ↵Justin Clarke Casey4-25/+7
being done by the lower database layers
2008-07-07* remove unused CommitAssets() hook for nowJustin Clarke Casey3-16/+0
2008-07-07* Start scripts loaded from an archiveJustin Clarke Casey1-3/+3
2008-07-06Copyright notices and formatting cleanup.Jeff Ames1-1/+28
2008-07-05changes prompting of create user console command to only ask for unspecified ↵Dahlia Trimble1-12/+16
parameters and avoid an exception if the wrong number of parameters are supplied
2008-07-04Renaming UserManagerBase.SetUserProfile(UserProfileData) to Dr Scofield2-5/+13
UserManager.UpdateUserProfile(UserProfileData). Adding UpdateUserProfile(UserProfileData) to IUserService interface. Adding RemoteAdminPlugin.XmlRpcUpdateUserAccountMethod(...) to provide a remote update capability.
2008-07-04mini-warnings-safari, plus cleanup of IUserServices method naming.Dr Scofield2-51/+53
2008-07-02* Drop InvType from the assets table since it is no longer usedJustin Clarke Casey2-3/+0
* Migration should be automatic on sqlite and mysql * Migration is not automatic on mssql, you will need to drop the invType column manually * Migration should be fine, but as for any db change, I would recommend making sure you have backups before moving past this revision
2008-06-30add the ability to cherry pick expire something from the assetSean Dague1-0/+24
cache. Bandaid until we rethink the caches a bit more.
2008-06-30Update svn properties.Jeff Ames1-21/+21
2008-06-29disabled the multiple inventory server support in login service again.MW3-134/+64
And reverted CachedUserInfo back to revision 5262. I don't think most of the inventory problems that people are reporting are due to these, but its easier to deal with one set of potential problems at a time, and I'm not going to get any time in the week to work on this anyway.
2008-06-29patch and files from mantis #1630, Thanks MelanieMW1-1/+1
2008-06-29couple of small fixes to try to fix support for multiple inventory servers ↵MW1-2/+14
in the loginservice
2008-06-28small change to see if that helps with the inventory problems.MW1-1/+1
2008-06-28more disabling multiple inventory server support in LoginServiceMW1-2/+2
2008-06-28Mantis#1626. Thank you kindly, Melanie for a patch that:Charles Krinke1-2/+2
Fixes IAvatarService for grid and standalone modes
2008-06-28more work on the support for multiple inventory servers. MW1-3/+3
The Login service should now read/create new inventory on the inventory server that is set in a users profile. Also added "Add-InventoryHost" console command to add a support for a new server to a region. So it would be good if someone could test this. Set up the grid as normal, but then also run extra inventory server on a different computer (well actually it just has to be on a different network hostname, so one using "http://localhost:8004" and one using "http://127.0.0.1:8005" should work) then you need to manually edit the user profile database to set the new servers url in a user's "userInventoryURI" field. Then on a region server, use the Add-InventoryHost to add the new server url (always include the full url, including http, but don't add a final /) Login with that account and see if the inventory works. Of course these needs to be made more user friendly.
2008-06-28Extracted the Avatar appearance functions out of the IUserService interface ↵MW2-5/+12
and moved them into a IAvatarService Although "out of the box", there is no actual functional change to behavior
2008-06-28plumbing for multiple inventory servers. Mostly done on the region server side. MW7-35/+198
TODO next is to make the login server read/write a users inventory from the correct server (the inventory url set in a userprofile) On the region side, although not tested with multiple servers it should work if that inventory url was set, and the inventory servers urls have been added to the CommunicationsManager, using CommunicationsManager.AddInventoryService(string hostUrl)
2008-06-27dr scofield's warning safari:Dr Scofield5-15/+16
* commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
2008-06-27dr scofield's warning safari: hunting down those little buggersDr Scofield1-1/+1
2008-06-26Mantis#1594. Thank you, Melanie for a patch that:Charles Krinke1-0/+11
Fixes: - Wearable icon and name sreset to default on copy/paste - Cache is not updated when renaming/moving folders - Partial refactor to make inventory less dependen on AssetBase having a "Name" field - Add llGiveInventoryList() function
2008-06-18* Refactors call to OutPacket out of AssetCache and into LLClientViewTeravus Ovares1-68/+17
2008-06-16* Allow archiver to save and load objects within other objects to arbitrary ↵Justin Clarke Casey1-23/+0
levels * This currently has various bugs which are more to do with the way its been hacked together than the feature itself (e.g. on save-oar, ghost prims will appear of the saved contained items). These will be found and eliminated in subsequent patches. * Not yet ready for use