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 cfc1ebc..8487adc 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -314,10 +314,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
314 protected int m_primFullUpdatesPerPacket = 14; 314 protected int m_primFullUpdatesPerPacket = 14;
315 protected int m_primTerseUpdateRate = 10; 315 protected int m_primTerseUpdateRate = 10;
316 protected int m_primFullUpdateRate = 14; 316 protected int m_primFullUpdateRate = 14;
317 protected int m_textureSendLimit = 20;
318 protected int m_textureDataLimit = 10;
319 protected int m_avatarTerseUpdateRate = 50; 317 protected int m_avatarTerseUpdateRate = 50;
320 protected int m_avatarTerseUpdatesPerPacket = 5; 318 protected int m_avatarTerseUpdatesPerPacket = 5;
319 /// <summary>Number of texture packets to put on the queue each time the
320 /// OnQueueEmpty event is triggered for the texture category</summary>
321 protected int m_textureSendLimit = 20;
321 protected IAssetService m_assetService; 322 protected IAssetService m_assetService;
322 private IHyperAssetService m_hyperAssets; 323 private IHyperAssetService m_hyperAssets;
323 324
@@ -3457,7 +3458,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3457 void ProcessTextureRequests() 3458 void ProcessTextureRequests()
3458 { 3459 {
3459 if (m_imageManager != null) 3460 if (m_imageManager != null)
3460 m_imageManager.ProcessImageQueue(m_textureSendLimit, m_textureDataLimit); 3461 m_imageManager.ProcessImageQueue(m_textureSendLimit);
3461 } 3462 }
3462 3463
3463 void ProcessPrimFullUpdates(object sender, ElapsedEventArgs e) 3464 void ProcessPrimFullUpdates(object sender, ElapsedEventArgs e)