diff options
author | Justin Clark-Casey (justincc) | 2012-01-19 19:00:11 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-01-19 19:00:11 +0000 |
commit | 9356963bd36e5c3b8c2b27bfcc2efa60ffbd02d6 (patch) | |
tree | 10fbe60949d8ad43ca5d076dd685a1edd11e5d6a /OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs | |
parent | RegionReady: (diff) | |
download | opensim-SC-9356963bd36e5c3b8c2b27bfcc2efa60ffbd02d6.zip opensim-SC-9356963bd36e5c3b8c2b27bfcc2efa60ffbd02d6.tar.gz opensim-SC-9356963bd36e5c3b8c2b27bfcc2efa60ffbd02d6.tar.bz2 opensim-SC-9356963bd36e5c3b8c2b27bfcc2efa60ffbd02d6.tar.xz |
Add basic request and send image regression tests for LLImageManager
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs b/OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs index 185a909..bbd2c43 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs | |||
@@ -82,7 +82,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
82 | /// <param name="packetsToSend">Maximum number of packets to send during this call</param> | 82 | /// <param name="packetsToSend">Maximum number of packets to send during this call</param> |
83 | /// <param name="packetsSent">Number of packets sent during this call</param> | 83 | /// <param name="packetsSent">Number of packets sent during this call</param> |
84 | /// <returns>True if the transfer completes at the current discard level, otherwise false</returns> | 84 | /// <returns>True if the transfer completes at the current discard level, otherwise false</returns> |
85 | public bool SendPackets(LLClientView client, int packetsToSend, out int packetsSent) | 85 | public bool SendPackets(IClientAPI client, int packetsToSend, out int packetsSent) |
86 | { | 86 | { |
87 | packetsSent = 0; | 87 | packetsSent = 0; |
88 | 88 | ||
@@ -212,7 +212,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
212 | } | 212 | } |
213 | } | 213 | } |
214 | 214 | ||
215 | private bool SendFirstPacket(LLClientView client) | 215 | private bool SendFirstPacket(IClientAPI client) |
216 | { | 216 | { |
217 | if (client == null) | 217 | if (client == null) |
218 | return false; | 218 | return false; |
@@ -247,7 +247,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
247 | return false; | 247 | return false; |
248 | } | 248 | } |
249 | 249 | ||
250 | private bool SendPacket(LLClientView client) | 250 | private bool SendPacket(IClientAPI client) |
251 | { | 251 | { |
252 | if (client == null) | 252 | if (client == null) |
253 | return false; | 253 | return false; |