aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/TextureSender.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Start sending "ImageNotFound" packet back to the client if we can't find ↵Justin Clarke Casey2008-02-251-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
* * Only count download requests for assets which are not already waiting for ↵Justin Clarke Casey2008-02-201-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
* * Add documentationJustin Clarke Casey2008-02-191-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.
* Mostly debugging verbosity which I shall very shortly comment out.Justin Clarke Casey2008-02-091-1/+2
| | | | | | Just want to try this out on windows quickly.
* Converted logging to use log4net.Jeff Ames2008-02-051-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.
* Added copyright statements.Jeff Ames2008-02-051-1/+29
|
* Set svn:eol-style.Jeff Ames2008-01-031-135/+135
|
* * Some work on TextureDownloadModulelbsa712008-01-031-0/+136
* fixed Cancel bug