aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities/Handlers/GetMesh/GetMeshHandler.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* seems to compile ( tests comented out)UbitUmarov2015-09-021-167/+51
|
* bad merge?UbitUmarov2015-09-011-30/+164
|\
| * turn off KeepAliveUbitUmarov2015-08-241-6/+6
| |
| * do keepalive on mesh and texture GET. Dont use reusecontext any where.UbitUmarov2015-08-181-6/+6
| | | | | | | | | | | | 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.
| * * Fix a null ref error in ↵teravus2012-11-241-0/+3
| | | | | | | | /..../OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs:339
| * * Plumbing and basic setting of the GetMesh Cap Throttler.teravus2012-11-171-1/+20
| | | | | | | | * Last step is to flip the throttle distribution.
| * * Fixes mesh loading issues in last commit.teravus2012-11-151-0/+9
| |
| * * Prep work switching the GetMeshModule over to a poll service.teravus2012-11-091-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.
* | revised GetMesh to not use intermediate base64 coding schemeFreaky Tech2015-03-051-44/+183
| | | | | | | | | | | | | | it delivers binary and has binary as input. base64 intermediate coding makes no sense. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* | Allow GetMesh capability to be served directly by a server like GetTextureJustin Clark-Casey (justincc)2014-11-251-31/+29
|/ | | | | To do this required GetMesh to be converted to a BaseStreamHandler Unlike GetTexture connector, no redirect URL functionality yet (this wasn't present in the first place).
* Don't need to try both AssetService.Get and GetCached in GetMesh since Get ↵Justin Clark-Casey (justincc)2011-08-181-36/+9
| | | | always calls GetCached and code paths were identical
* Refactored the GetMesh module into a handler and a module, to be the same as ↵Diva Canto2011-05-021-0/+143
GetTexture.