aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-04-20* Change lazy user inventory creation on first login to synchronous rather ↵Justin Clarke Casey1-1/+1
than async. * Add more error checking so that we don't proceed if there has been a problem with inventory retrieval
2008-04-20* On grid mode, if the inventory service is responding but returning an ↵Justin Clarke Casey1-2/+2
empty response to a whole agent inventory request, then post an inventory login failure message. IMO, this is better than allowing the agent to login with an apparantly blank inventory.
2008-04-17* Re-Fixed caps Teravus Ovares3-14/+10
* This fixes chi11ken's/OpenViewer's libsl cap issue.
2008-04-17Update svn properties. Add copyright info to some source files.Jeff Ames2-2/+54
2008-04-15* A tweak of the caps system so that new caps have random paths instead of a ↵Teravus Ovares1-0/+13
fixed path * This allows caps requests to be routed to regions where the agent is currently a root agent instead of the region that they logged into as it did previously. * This fixes a wide variety of bugs related to 'can't do X once i've crossed a border'. * The first seed cap request fails, the second one works. (this generates an error message on the console) * Experimental.
2008-04-15* Make it easier to follow logins on the user server by changing and tidying ↵Justin Clarke Casey1-18/+22
up log messages
2008-04-15* Send a meaningful response to both the user server console and the client ↵Justin Clarke Casey2-13/+41
if a login fails because the inventory service has failed.
2008-04-15From: Dr Scofield <hud@zurich.ibm.com>Sean Dague1-0/+1
ansgar and i have been working on an asterisk voice module that will allow us to couple opensim with an asterisk VoIP gateway. the patch below consists of * AsteriskVoiceModule region module: alternative to the plain-vanilla VoiceModule, will make XmlRpc calls out to an asterisk-opensim frontend * asterisk-opensim.py frontend, living in share/python/asterisk, takes XmlRpc calls from the AsteriskVoiceModule * account_update: to update/create a new SIP account (on ProvisionVoiceAccountRequest) * region_update: to update/create a new "region" conference call (on ParcelVoiceInfo) * a asterisk-opensim test client, living in share/python/asterisk, to exercise astersik-opensim.py this still does not give us voice in OpenSim, but it's another step on this path...
2008-04-14* Working towards notifying the client if the inventory service has failed, ↵Justin Clarke Casey2-6/+35
rather than simply returning 0 items. * This is very early support which would only be triggered in a rather unlikely case (if the user server correctly received an inventory skeleton, but later on failed to return the whole inventory in a timely manner. Also, this only applies to the 1.19.1.4 client onwards * Code cleanup and support for other failure cases (failure of inventory caching on region crossing, failure to actually add a folder/item, etc, should follow.
2008-04-14* Fixed a few warnings.Teravus Ovares1-3/+3
* Added license info to a few files it was missing from. * Fleshed out the landbuy interfaces * If you add '-helperuri http://127.0.0.1:9000/' to your list of parameters you tell the client to use when you start it up you can transfer ownership of parcels now in standalone. Structured gridmode requires a lot more work, see the documentation in the example money module. The example money module is not secure especially in standalone mode.
2008-04-13* Correct comment from previous patch - I'm not reversing mantis #912 at ↵Justin Clarke Casey1-1/+1
all, which was in an entirely different location
2008-04-13* Reverse mantis #912 since it was causing inventory to disappear from the ↵Justin Clarke Casey1-1/+10
root folder on 1.19.1.4 non-cache clear relog. * The folder version numbers probably do need to be non-zero, but there is a further subtlety of the protocol to understand first
2008-04-13* Put in crude poll waiting for 60 seconds for delayed user inventory ↵Justin Clarke Casey1-2/+27
delivery from the inventory service * This will reduce failures where the inventory server is simply slow * Still need to properly inform the user if the inventory service has failed altogether
2008-04-11* Remove the worst excesses of my inventory debugging codeJustin Clarke Casey1-6/+6
2008-04-11* Eliminate a class of errors where an inventory request could be made ↵Justin Clarke Casey1-11/+20
before the region had completely received the inventory for the user. * A much larger race condition where the inventory request could be made before the region gets any data at all will also be fixed in the near future. * This change also fixes a regression from two patches ago where items stopped appearing in standalone inventory
2008-04-11* Minor inventory code cleanup following on from last patchJustin Clarke Casey2-5/+1
2008-04-11* Change inventory async response deliver to deliver all items and folders ↵Justin Clarke Casey4-43/+106
at once, rather than each individual * This is required in order to work towards eliminating some inventory race conditions and to better deal with situations where a grid inventory server is slow or not responding.
2008-04-11* minor: replace test of CachedUserInfo.RootFolder != null with something ↵Justin Clarke Casey2-14/+20
more readable, and make RootFolder get only
2008-04-11* minor documenting, cleanup, renaming in user profile cache serviceJustin Clarke Casey2-12/+29
2008-04-11* documenting and minor refactoring in UserProfileCacheServiceJustin Clarke Casey1-14/+24
2008-04-11refactor: eliminate method in UserProfileCacheServiceJustin Clarke Casey1-14/+13
2008-04-10* Minor: really just comment and subsequent indentation adjustment. ↵Justin Clarke Casey1-41/+55
Preparation for handling inventory problems where the inventory server receives a request and never responds, or is late in responding
2008-04-10* Refactor GetUsersInventory()Justin Clarke Casey2-3/+3
2008-04-10Thank you kindly, A_Biondi for a patch that:Charles Krinke1-0/+13
Handles the CreateItem cap request for all wearables, setting the proper value in inType and assType.
2008-04-10* Minor: get CreateNewUserInventory() to return true on successJustin Clarke Casey2-3/+8
2008-04-10* Minor inventory message cleanup and documentationJustin Clarke Casey1-3/+4
2008-04-10renaming of attributes in UserAgentData for readabilitySean Dague1-17/+17
2008-04-10changing UserAgentData to use properties. This caused moreSean Dague2-38/+38
grief than expected, as monodevelop doesn't like to refactor properties of properties.
2008-04-10further renaming of properties for claritySean Dague4-22/+22
2008-04-10moved fields to properties for UserDataProfile, which wasSean Dague4-69/+69
actually a little more work than I expected given the copious use of out params.
2008-04-08further refactor and rename of InventoryFolderBase propertiesSean Dague5-26/+26
to reflect what they really are.
2008-04-08* Adjust some inventory lookup failure messages to reduce confusion as to ↵Justin Clarke Casey1-5/+7
what just went wrong
2008-04-08* Update code to use patched libsecondlife.dll which removes the problem ↵Justin Clarke Casey2-11/+2
where the AssetType enum was 'Primitive' rather than 'Object' * The libsecondlife patch was also applied to libsecondlife itself in r1714 * Many, many thanks to Dr Schofield (IBM) for his help on this :)
2008-04-07more refactoring, this time on InventoryFolderBaseSean Dague7-182/+182
* wrap attributes in properties * clean up names a little bit * clean up name styles
2008-04-07Refactor InventoryItemBase to do the following:Sean Dague4-61/+61
* wrap fields as Properties * rename some fields/properties to more sensible names * set style to PropName to match more standard C# approach
2008-04-04From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey1-2/+0
Patch to remove commented NotImpemented calls from within implemented script functions
2008-04-04* Make objects appear in 1.19.1.4 inventory againJustin Clarke Casey1-6/+19
* You will probably need to clear your client's cache before this will take effect * The problem was that the underlying libsecondlife.AssetType was returning "primitive" rather than "object". This fix is in lieu of correcting/updating our libsecondlife.dll
2008-04-04* Fixed up some documentation regarding the inventory descendants method ↵Teravus Ovares1-3/+17
XML. Cleaned up an error report. Noted at the top, why the two unused caps path variables must stay.
2008-04-04* Fixes CAPS InventoryDescendants and the notorious ↵Teravus Ovares1-9/+46
'LLSDParseException:expected </llsd>' error. * Objects folder still exhibits strange behavior.
2008-04-04* Fixing permissions on items returned via CAPS based inventoryTeravus Ovares1-1/+2
2008-04-03Update svn properties.Jeff Ames2-144/+144
2008-04-03* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey3-193/+192
* This patch removes voice code into a region module. This required the implementation of events and other code to allow region modules to register their own caps handlers, and should allow different voice module implementations. * CAVEAT: This does not provide complete voice support, it merely provides the hooks so that it can be plugged in.
2008-04-03* Adding request time limiting strategy for texture requests, though this ↵Justin Clarke Casey2-1/+141
isn't useable yet
2008-04-02* Attempt to resolve mantis 873 by placing caps removal operations in a ↵Justin Clarke Casey1-1/+1
critical section
2008-04-02* Updating the version of the ODE library. (big update). The Mac library ↵Teravus Ovares2-0/+45
needs to be updated still. * Adding some XMPP stuff that's incomplete.
2008-03-31* Set Svn Properties eol-style: |337Teravus Ovares1-1/+1
2008-03-31* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey3-74/+159
* (and Ansgar/Ansi) * Fleshes out the voice stubs to better interact with the viewer CAPS requests - no actual voice support yet! * In his own words "the attached patch enhances the existing voice support by returning a proper voice account user and password and is preparing the config file so that we can specify a SIP server (not yet working). currently the SIP is hardcoded. the next step is to refactor voice support into a region module. working on that. "
2008-03-31* Minor: If a user exists but has no inventory in standalone, automatically ↵Justin Clarke Casey1-3/+4
create new inventory folders * This mirrors the grid behaviour
2008-03-31* Log exceptions which make it up to the top of the http request frame, ↵Justin Clarke Casey1-31/+21
rather than having them disappear off into the ether
2008-03-31* Fix problem where inventory code throws a swallowed exception on grid mode ↵Justin Clarke Casey1-17/+33
if the avatar has never logged in before