aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/TextureSender.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-02-25* Start sending "ImageNotFound" packet back to the client if we can't find ↵Justin Clarke Casey1-8/+25
an image * This might stop some client's constant requests for unfound textures, which is a candidate for the memory leak * If a texture is not found then the "Image not found" texture will now be displayed clientside * If it works, this should resolve mantis 676 * Non texture image requests do not receive this packet yet * This will require a prebuild
2008-02-20* Only count download requests for assets which are not already waiting for ↵Justin Clarke Casey1-0/+2
data from the asset server * This should stop the constant increase in the download requests statistics * If you see stat numbers for download requests which are far from what you'd expect, please report
2008-02-19* Add documentationJustin Clarke Casey1-11/+47
* The reason why pending downloads tick ever upwards is because missing assets are never signalled to the TextureSender * Rectifying this is not straightfoward, but this will constitute the next patch. * This does not explain the memory leak.
2008-02-09Mostly debugging verbosity which I shall very shortly comment out.Justin Clarke Casey1-1/+2
Just want to try this out on windows quickly.
2008-02-05Converted logging to use log4net.Jeff Ames1-3/+4
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-05Added copyright statements.Jeff Ames1-1/+29
2008-01-03Set svn:eol-style.Jeff Ames1-135/+135
2008-01-03* Some work on TextureDownloadModulelbsa711-0/+136
* fixed Cancel bug