aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
authorUbitUmarov2015-09-24 00:35:06 +0100
committerUbitUmarov2015-09-24 00:35:06 +0100
commit8fde2fb901bbb017b56e3be2f10655fbb0d88b5b (patch)
treef9f0243fca8a03033845996368e80790c4c14ffb /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
parent dont let http keepalive and context reuse be true (diff)
downloadopensim-SC_OLD-8fde2fb901bbb017b56e3be2f10655fbb0d88b5b.zip
opensim-SC_OLD-8fde2fb901bbb017b56e3be2f10655fbb0d88b5b.tar.gz
opensim-SC_OLD-8fde2fb901bbb017b56e3be2f10655fbb0d88b5b.tar.bz2
opensim-SC_OLD-8fde2fb901bbb017b56e3be2f10655fbb0d88b5b.tar.xz
slow down terrain sending so other users of LAND queue do have a chance to send things
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index dbe85d0..5ca96f2 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -1210,7 +1210,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1210 public virtual bool CanSendLayerData() 1210 public virtual bool CanSendLayerData()
1211 { 1211 {
1212 int n = m_udpClient.GetPacketsQueuedCount(ThrottleOutPacketType.Land); 1212 int n = m_udpClient.GetPacketsQueuedCount(ThrottleOutPacketType.Land);
1213 if ( n > 256) 1213 if ( n > 20)
1214 return false; 1214 return false;
1215 return true; 1215 return true;
1216 } 1216 }