aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/TextureSender.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-04-30* Refactored Environment/Modules directory - modules now reside in their own ↵Adam Frisby1-220/+0
directory with any associated module-specific classes. * Each module directory is currently inside one of the following category folders: Agent (Anything relating to do with Client<->Server communications.), Avatar (Anything to do with the avatar or presence inworld), Framework (Classes modules can use), Grid (Grid traffic, new OGS2 grid comms), Scripting (Scripting functions, etc), World (The enrivonment/scene, IE Sun/Tree modules.) * This should be moved into a seperate project file.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-4/+4
(this took a while to run).
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
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