diff options
author | UbitUmarov | 2014-08-14 21:18:58 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-14 21:18:58 +0100 |
commit | 0ae8fed4c20f53921193b7b8f0b5b2f4ab1b61b3 (patch) | |
tree | 09d6bb76d665f9b26d8ba43b25fe6290e5b53f1a | |
parent | in show connections show also if it is a childagent connection (diff) | |
download | opensim-SC_OLD-0ae8fed4c20f53921193b7b8f0b5b2f4ab1b61b3.zip opensim-SC_OLD-0ae8fed4c20f53921193b7b8f0b5b2f4ab1b61b3.tar.gz opensim-SC_OLD-0ae8fed4c20f53921193b7b8f0b5b2f4ab1b61b3.tar.bz2 opensim-SC_OLD-0ae8fed4c20f53921193b7b8f0b5b2f4ab1b61b3.tar.xz |
reduce ping cliping lower limit
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs index 9cf65d7..fe31bd9 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs | |||
@@ -170,8 +170,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
170 | { | 170 | { |
171 | get | 171 | get |
172 | { | 172 | { |
173 | if (m_pingMS < 20) | 173 | if (m_pingMS < 10) |
174 | return 20; | 174 | return 10; |
175 | if(m_pingMS > 2000) | 175 | if(m_pingMS > 2000) |
176 | return 2000; | 176 | return 2000; |
177 | return m_pingMS; | 177 | return m_pingMS; |