aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorUbitUmarov2014-08-26 17:42:44 +0100
committerUbitUmarov2014-08-26 17:42:44 +0100
commit92b0b27caff9f73f619e1df32a430706b53f6782 (patch)
treeeda5979e1e37989d5e341c6197caad4746ac276f /OpenSim/Region/ClientStack
parentstill testing (diff)
downloadopensim-SC_OLD-92b0b27caff9f73f619e1df32a430706b53f6782.zip
opensim-SC_OLD-92b0b27caff9f73f619e1df32a430706b53f6782.tar.gz
opensim-SC_OLD-92b0b27caff9f73f619e1df32a430706b53f6782.tar.bz2
opensim-SC_OLD-92b0b27caff9f73f619e1df32a430706b53f6782.tar.xz
dont append acks to a resend packet
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index 3b0312d..dea9d7f 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -1245,7 +1245,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1245 int dataLength = buffer.DataLength; 1245 int dataLength = buffer.DataLength;
1246 1246
1247 // NOTE: I'm seeing problems with some viewers when ACKs are appended to zerocoded packets so I've disabled that here 1247 // NOTE: I'm seeing problems with some viewers when ACKs are appended to zerocoded packets so I've disabled that here
1248 if (!isZerocoded) 1248 if (!isZerocoded && !isResend)
1249 { 1249 {
1250 // Keep appending ACKs until there is no room left in the buffer or there are 1250 // Keep appending ACKs until there is no room left in the buffer or there are
1251 // no more ACKs to append 1251 // no more ACKs to append