diff options
author | UbitUmarov | 2015-09-24 00:35:06 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-24 00:35:06 +0100 |
commit | 8fde2fb901bbb017b56e3be2f10655fbb0d88b5b (patch) | |
tree | f9f0243fca8a03033845996368e80790c4c14ffb /OpenSim/Region/ClientStack | |
parent | dont let http keepalive and context reuse be true (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 2 |
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 | } |