aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-08-24 turn off KeepAliveUbitUmarov2-8/+8
2015-08-18do keepalive on mesh and texture GET. Dont use reusecontext any where.UbitUmarov2-8/+8
setting of keepalive is wrong, it should follow the requested one ( or always as http1.1) only deny if needed (errors). KeepAlive may increase stress on number of avaiable file descritors.
2014-10-14lso remove caps with "PUT" http methodUbitUmarov1-0/+1
2014-08-09explicitly force a reset to the event on creationUbitUmarov1-1/+2
#Please enter the commit message for your changes. Lines starting
2013-11-15refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)1-1/+1
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
2013-10-04Bump OPenSimulator version and assembly versions up to 0.8.0 DevJustin Clark-Casey (justincc)1-1/+1
2013-07-15Add request received/handling stats for caps which are served by http poll ↵Justin Clark-Casey (justincc)1-6/+87
handlers. This adds explicit cap poll handler supporting to the Caps classes rather than relying on callers to do the complicated coding. Other refactoring was required to get logic into the right places to support this.
2013-07-13Added UploadBakedTexture/UploadBakedTextureServerConnector, so that this can ↵Diva Canto1-0/+76
eventually be served by a robust instance. NOT FINISHED YET.
2013-07-08minor: Add back commented out logging message in Caps.RegisterHandler() that ↵Justin Clark-Casey (justincc)1-0/+1
I accidentally removed.
2013-07-08For stat purposes, add names to capability request handlers where these were ↵Justin Clark-Casey (justincc)1-1/+0
not set
2013-07-08Add "show caps stats by user" and "show caps stats by cap" console commands ↵Justin Clark-Casey (justincc)4-5/+17
to print various counts of capability invocation by user and by cap This currently prints caps requests received and handled, so that overload of received compared to handled or deadlock can be detected. This involves making BaseStreamHandler and BaseOutputStream record the ints, which means inheritors should subclass ProcessRequest() instead of Handle() However, existing inheriting classes overriding Handle() will still work, albeit without stats recording. "show caps" becomes "show caps list" to disambiguate between show caps commands
2013-06-30Revert "A little more debug for the Unknown User problem mantis #6625"Diva Canto1-3/+0
This reverts commit ff47cf77ab52d42195fb0f089599618511d4919b.
2013-06-29A little more debug for the Unknown User problem mantis #6625Diva Canto1-0/+3
2013-06-20minor: fix mono compiler warning in FetchInventory2HandlerJustin Clark-Casey (justincc)1-2/+2
2013-06-10Remove Temporary from use to shortcut asset stores. The Local propertyMic Bowman1-0/+1
differentiates between local & grid storage. The Temporary property just says that which service handles the it, the asset can be safely removed in the future.
2013-05-31Fix multi-wear of alpha and tattoo layers.Melanie2-2/+2
2013-05-07Added AvatarPickerSearch capability handler.Diva Canto2-0/+167
2013-04-30Fix CAPS to work like they should - do not send caps to the viewer if ↵Melanie1-2/+5
they're not in the requested caps list. The previous wrong behavior caused the debug setting "UseHTTPInventory" to fail on all viewers when turned off. UDB inventory would not be correctly used in that case.
2013-04-30Fix CAPS to work like they should - do not send caps to the viewer if ↵Melanie1-2/+5
they're not in the requested caps list. The previous wrong behavior caused the debug setting "UseHTTPInventory" to fail on all viewers when turned off. UDB inventory would not be correctly used in that case.
2013-02-19Deleted all AssemblyFileVersion directivesDiva Canto1-1/+1
2013-02-18Fix an issue where the viewer would request the seed cap beforeMelanie1-0/+13
there was a handler for it.
2013-02-06Move SoubleQueu to Util. Change HTTP inv to prioritize COF. Determine COF for SPMelanie1-1/+1
2013-02-05Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)2-2/+2
This is mostly Bluewall's work but I am also bumping the general version number OpenSimulator 0.7.5 remains in the release candidate stage. I'm doing this because master is significantly adding things that will not be in 0.7.5 This update should not cause issues with existing external binary DLLs because our DLLs do not have strong names and so the exact version match requirement is not in force.
2013-02-01Revert "Update assembly version numbers"BlueWall2-2/+2
This reverts commit 141ad829f448b9138b12be7cf99c834c1f3977ec.
2013-02-01Update assembly version numbersBlueWall2-2/+2
2013-01-21* A better way to handle the last fix (This is in case the viewer provides a ↵teravus1-10/+16
list of preferred formats, though, technically, the sim would pick the first provided format the old way). This just makes it more obvious what's happening.
2013-01-21* The fallthrough of FetchTexture was no longer resulting in a 404 response ↵teravus1-1/+10
on missing textures. It was just waiting and no event was being provided. This re-enables the 404 response.
2012-12-29* This finishes the implementation of AgentCachedTexture. Requires the ↵teravus1-3/+10
XBakes Module and service for full functionality. Previous no-cache functionality works without the service and module. In some ways, I would have been happier not putting an AssetBase in WearableCacheItem.. but turns out it was probably unavoidable. No additional locks, yay.
2012-12-21* Partial Commit for Avatar Appearance to include the functionality of ↵teravus1-1/+1
Cached Bakes.
2012-12-06minor: change method doc on GetTextureHandler.TryParseRange(), mainly to ↵Justin Clark-Casey (justincc)1-2/+2
trigger another build
2012-12-06Allow GetTexture calls with no second value in the range header (e.g. just ↵Justin Clark-Casey (justincc)1-1/+34
5333-) It looks like the latest Kokua is doing this. As per http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html, leaving off the second value is legal This indicates the caller wants the rest of the entity.
2012-11-24* Fix a null ref error in ↵teravus1-0/+3
/..../OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs:339
2012-11-24* Fix a null ref error in ↵teravus1-0/+2
/..../OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs:339
2012-11-24Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)1-1/+1
automatically turns off any logging enabled between tests
2012-11-17* Plumbing and basic setting of the GetMesh Cap Throttler.teravus1-1/+20
* Last step is to flip the throttle distribution.
2012-11-15Revert "Merge master into teravuswork", it should have been avination, not ↵teravus1-16/+2
master. This reverts commit dfac269032300872c4d0dc507f4f9062d102b0f4, reversing changes made to 619c39e5144f15aca129d6d999bcc5c34133ee64.
2012-11-15* Fixes mesh loading issues in last commit.teravus1-0/+9
2012-11-13Added a few more AssemblyInfos. (Plus added the one in OptionalModules, ↵Diva Canto2-0/+66
which had been forgotten.)
2012-11-09* Prep work switching the GetMeshModule over to a poll service.teravus1-5/+126
* This still has the image throttler in it.. as is... so it's not suitable for live yet.... The throttler keeps track of the task throttle but doesn't balance the UDP throttle yet.
2012-11-05Another step in the chain. Pipe the throttle update to the appropriate ↵teravus1-1/+5
PollServiceTextureEventArgs. Each poll service having it's own throttle member is more consistent with the model then the region module keeping track of all of them globally and better for locking too. The Poll Services object is not set static to handle multiple nearby regions on the same simulator. Next step is hooking it up to HasEvents
2012-10-12minor: Comment out "Client requested range for texture ... but" message. ↵Justin Clark-Casey (justincc)1-3/+3
This is not useful during normal operation.
2012-09-26 don't send a partial contents report if we are sending all dataUbitUmarov1-10/+15
2012-09-26 fix GetTextureHandler rangeUbitUmarov1-1/+5
2012-09-23try to allow free uploads for testing, if users prefix names with "TEST-". LetUbitUmarov1-0/+1
textures get into inventory again. Both features under config control. Have direct warnings to client, including a final one on upload complete since i see nothing. problems: textures don't showup in inventory til relog, also issues with permitions. A few more changes
2012-09-22 report asset upload errors the right awayUbitUmarov2-0/+12
2012-09-22removed AssetUploaderWithCost, fixing AssetUploader. add parsing of someUbitUmarov1-0/+4
more needed fields in request
2012-09-14Revamp the HTTP textures handler to allow a maximum of four fetchesMelanie3-97/+80
at any time and to drop requests for avatars n longer in the scene
2012-09-11 report mesh upload costs ( fake values)UbitUmarov1-1/+22
2012-09-11 let LLSDAssetUploadRequest include asset_resources information plus letUbitUmarov1-1/+10
NewAgentInventoryRequest know about mesh (does nothing with it still)
2012-09-06If the GetTexture capability receives a request for a range of data beyond ↵Justin Clark-Casey (justincc)1-5/+29
that of an otherwise valid asset, return HTTP PartialContent rather than RequestedRangeNotSatisfiable. This is because recent viewers (3.2.1, 3.3.4) and probably earlier ones using the http GetTexture capability will sometimes make such invalid range requests. This appears to happen if the viewer's estimate of texture sizes at discard levels > 0 (chiefly 2) exceeds the total texture size. I believe this does not normally happen but can occur for dynamic textures with are large but mainly blank. If this happens, returning a RequestedRangeNotSatisfiable will cause the viewer to not render the texture at the final resolution. However, returning a PartialContent (or OK) even with 0 data will allow the viewer to render the final texture.