aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 3b1a0bd..9afff5a 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -313,10 +313,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
313 protected int m_primFullUpdatesPerPacket = 14; 313 protected int m_primFullUpdatesPerPacket = 14;
314 protected int m_primTerseUpdateRate = 10; 314 protected int m_primTerseUpdateRate = 10;
315 protected int m_primFullUpdateRate = 14; 315 protected int m_primFullUpdateRate = 14;
316 protected int m_textureSendLimit = 20;
317 protected int m_textureDataLimit = 10;
318 protected int m_avatarTerseUpdateRate = 50; 316 protected int m_avatarTerseUpdateRate = 50;
319 protected int m_avatarTerseUpdatesPerPacket = 5; 317 protected int m_avatarTerseUpdatesPerPacket = 5;
318 /// <summary>Number of texture packets to put on the queue each time the
319 /// OnQueueEmpty event is triggered for the texture category</summary>
320 protected int m_textureSendLimit = 20;
320 protected IAssetService m_assetService; 321 protected IAssetService m_assetService;
321 322
322 #endregion Class Members 323 #endregion Class Members
@@ -3453,7 +3454,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3453 void ProcessTextureRequests() 3454 void ProcessTextureRequests()
3454 { 3455 {
3455 if (m_imageManager != null) 3456 if (m_imageManager != null)
3456 m_imageManager.ProcessImageQueue(m_textureSendLimit, m_textureDataLimit); 3457 m_imageManager.ProcessImageQueue(m_textureSendLimit);
3457 } 3458 }
3458 3459
3459 void ProcessPrimFullUpdates(object sender, ElapsedEventArgs e) 3460 void ProcessPrimFullUpdates(object sender, ElapsedEventArgs e)