aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP
diff options
context:
space:
mode:
authorUbitUmarov2019-03-19 00:47:45 +0000
committerUbitUmarov2019-03-19 00:47:45 +0000
commitc2086e6257bbf63c4b4edf56729bdf78e4ce3195 (patch)
treed5ca738d23758fd316fd37664df33c814a4950b0 /OpenSim/Region/ClientStack/Linden/UDP
parentlludp ReplyTaskInventory, SendXferPacket and AbortXfer enconding (diff)
downloadopensim-SC-c2086e6257bbf63c4b4edf56729bdf78e4ce3195.zip
opensim-SC-c2086e6257bbf63c4b4edf56729bdf78e4ce3195.tar.gz
opensim-SC-c2086e6257bbf63c4b4edf56729bdf78e4ce3195.tar.bz2
opensim-SC-c2086e6257bbf63c4b4edf56729bdf78e4ce3195.tar.xz
add a few extra checks for viewers animated objects support, to avoid timming issues
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP')
-rwxr-xr-xOpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index 465a4d0..2f73454 100755
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -1710,8 +1710,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1710 m_pendingCache.Remove(endPoint); 1710 m_pendingCache.Remove(endPoint);
1711 } 1711 }
1712 1712
1713 client.CheckViewerCaps();
1714
1715 m_log.DebugFormat("[LLUDPSERVER]: Client created, processing pending queue, {0} entries", queue.Count); 1713 m_log.DebugFormat("[LLUDPSERVER]: Client created, processing pending queue, {0} entries", queue.Count);
1716 // Reinject queued packets 1714 // Reinject queued packets
1717 while (queue.Count > 0) 1715 while (queue.Count > 0)
@@ -1727,6 +1725,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1727 // circuit code to the existing child agent. This is not particularly obvious. 1725 // circuit code to the existing child agent. This is not particularly obvious.
1728 SendAckImmediate(endPoint, uccp.Header.Sequence); 1726 SendAckImmediate(endPoint, uccp.Header.Sequence);
1729 1727
1728 client.CheckViewerCaps();
1729
1730 // We only want to send initial data to new clients, not ones which are being converted from child to root. 1730 // We only want to send initial data to new clients, not ones which are being converted from child to root.
1731 if (client != null) 1731 if (client != null)
1732 { 1732 {