aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs3
-rw-r--r--bin/OpenSim.ini.example5
2 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 4d6b35b..f6a326f 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -532,7 +532,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
532 m_PacketHandler.ReliableIsImportant = 532 m_PacketHandler.ReliableIsImportant =
533 clientConfig.GetBoolean("ReliableIsImportant", 533 clientConfig.GetBoolean("ReliableIsImportant",
534 false); 534 false);
535 535 m_PacketHandler.MaxReliableResends = clientConfig.GetInt("MaxReliableResends",
536 m_PacketHandler.MaxReliableResends);
536 m_primTerseUpdatesPerPacket = clientConfig.GetInt("TerseUpdatesPerPacket", 537 m_primTerseUpdatesPerPacket = clientConfig.GetInt("TerseUpdatesPerPacket",
537 m_primTerseUpdatesPerPacket); 538 m_primTerseUpdatesPerPacket);
538 m_primFullUpdatesPerPacket = clientConfig.GetInt("FullUpdatesPerPacket", 539 m_primFullUpdatesPerPacket = clientConfig.GetInt("FullUpdatesPerPacket",
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index d54734a..f379516 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -1255,7 +1255,10 @@
1255[LLClient] 1255[LLClient]
1256 ; Resend packets markes as reliable until they are received 1256 ; Resend packets markes as reliable until they are received
1257 ;ReliableIsImportant = false 1257 ;ReliableIsImportant = false
1258 1258
1259 ; Maximum number of times to resend packets marked reliable
1260 ;MaxReliableResends = 3
1261
1259 ; Configures how ObjectUpdates are compressed. 1262 ; Configures how ObjectUpdates are compressed.
1260 ;TerseUpdatesPerPacket=10 1263 ;TerseUpdatesPerPacket=10
1261 ;FullUpdatesPerPacket=14 1264 ;FullUpdatesPerPacket=14