aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
diff options
context:
space:
mode:
authorUbitUmarov2018-12-28 13:52:59 +0000
committerUbitUmarov2018-12-28 13:52:59 +0000
commit4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4 (patch)
tree6e8200b3b7a3c0465853e42bbd790a59ccd4e312 /OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
parentupdate pbs (diff)
downloadopensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.zip
opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.tar.gz
opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.tar.bz2
opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.tar.xz
now break several things at same time... sog/sop updates, threads options,...
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index 567bbb5..70cca51 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -341,19 +341,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
341 /// <summary>Flag to signal when clients should send pings</summary> 341 /// <summary>Flag to signal when clients should send pings</summary>
342 protected bool m_sendPing; 342 protected bool m_sendPing;
343 343
344 protected int m_animationSequenceNumber;
345
346 public int NextAnimationSequenceNumber
347 {
348 get
349 {
350 m_animationSequenceNumber++;
351 if (m_animationSequenceNumber > 2147482624)
352 m_animationSequenceNumber = 1;
353 return m_animationSequenceNumber;
354 }
355 }
356
357 protected ExpiringCache<IPEndPoint, Queue<UDPPacketBuffer>> m_pendingCache = new ExpiringCache<IPEndPoint, Queue<UDPPacketBuffer>>(); 344 protected ExpiringCache<IPEndPoint, Queue<UDPPacketBuffer>> m_pendingCache = new ExpiringCache<IPEndPoint, Queue<UDPPacketBuffer>>();
358 345
359 protected Pool<IncomingPacket> m_incomingPacketPool; 346 protected Pool<IncomingPacket> m_incomingPacketPool;
@@ -507,7 +494,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
507 ThrottleRates = new ThrottleRates(configSource); 494 ThrottleRates = new ThrottleRates(configSource);
508 495
509 Random rnd = new Random(Util.EnvironmentTickCount()); 496 Random rnd = new Random(Util.EnvironmentTickCount());
510 m_animationSequenceNumber = rnd.Next(11474826);
511 497
512// if (usePools) 498// if (usePools)
513// EnablePools(); 499// EnablePools();