aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
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
2008-06-14* Start recording asset request failuresJustin Clarke Casey1-2/+6
* This includes problems such as connection failures and timeouts. It does not include 'asset not found' replies from the asset service.
2008-06-13save_assets_to_file path shouldn't always assume uploaded Sean Dague1-1/+8
content are images and use .jp2 for the file extension.
2008-06-13* refactor: catch asset service request exceptions at the AssetServerBase ↵Justin Clarke Casey2-26/+35
level rather than in the GridAssetClient * this is to enable logging of asset request exceptions soon
2008-06-13* minor: comment out confusing DefaultTimeout field in RestClient, which is ↵Justin Clarke Casey1-1/+1
currently not actually used
2008-06-12* Split the World Map code into a module.Teravus Ovares1-4/+5
* Implemented a hack so regions beyond the 10,000m range will show the map without having to click on the map before they'll start to show. The hack shows regions around the one you're in, but it won't show the one you're in.. you still need to click on the map to get that (not sure why yet). Additionally, the map still only shows pictures for regions that are hosted on the same instance (no change).
2008-06-11Mantis#1514. Thank you kindly, Boscata for an InventoryServer patchCharles Krinke3-1/+23
to allow the InventoryServer to work with MSSQL..
2008-06-10* minor: Properly clear the pushed asset cache statistics where the ↵Justin Clarke Casey1-0/+4
clear-assets command is used on the region console * stop waiting for garbage collection when GC total memory used is requested, in case the periodic request of this lags the sim
2008-06-06Minor formatting cleanup.Jeff Ames1-1/+1
2008-06-04* adding XmppPresenceStanza and deserialization/reification supportDr Scofield3-6/+100
having reached the intermediate level of .NET's XmlSudoku, i've now figured out how to do deserialization using different XmlSerializers (this stuff begins to grow on me, sigh). [still not used code, work-in-progress] * adding convenience property on OSHttpRequest.cs (from awebb)
2008-06-04* fleshing out XMPP entities, adding XmppWriter and XmppSerializerDr Scofield6-17/+315
having spent the last couple of days wrestling with .NET XmlSerializer and trying to get it to do what is required by XMPP (RFC 3920 & 3921) this is the preliminary result of that wrestling (you should see the other guy!): XmppSerializer allows us to serialize Xmpp stanza (and theoretically deserialize [or reify] them), XmppWriter helps avoiding various gratuitous crap added in by off-the-shelf XmlSerializer. this is currently not used anywhere but the plan is to use it for at least an XMPPBridgeModule.