aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authoropensim mirror account2010-10-29 17:40:03 -0700
committeropensim mirror account2010-10-29 17:40:03 -0700
commit7df180c18e4339e9b0f03b6bdaf30c75d47f6f76 (patch)
treecdb789278652f3eb26e3a4640e1a166b88312cb5 /OpenSim/Region/ClientStack
parentMerge branch 'master' of /var/git/opensim/ (diff)
parentSet async_packet_handling = true by default (diff)
downloadopensim-SC_OLD-7df180c18e4339e9b0f03b6bdaf30c75d47f6f76.zip
opensim-SC_OLD-7df180c18e4339e9b0f03b6bdaf30c75d47f6f76.tar.gz
opensim-SC_OLD-7df180c18e4339e9b0f03b6bdaf30c75d47f6f76.tar.bz2
opensim-SC_OLD-7df180c18e4339e9b0f03b6bdaf30c75d47f6f76.tar.xz
Merge branch 'master' of /var/git/opensim/
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index 161e8c2..821f679 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -183,7 +183,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
183 IConfig config = configSource.Configs["ClientStack.LindenUDP"]; 183 IConfig config = configSource.Configs["ClientStack.LindenUDP"];
184 if (config != null) 184 if (config != null)
185 { 185 {
186 m_asyncPacketHandling = config.GetBoolean("async_packet_handling", false); 186 m_asyncPacketHandling = config.GetBoolean("async_packet_handling", true);
187 m_recvBufferSize = config.GetInt("client_socket_rcvbuf_size", 0); 187 m_recvBufferSize = config.GetInt("client_socket_rcvbuf_size", 0);
188 sceneThrottleBps = config.GetInt("scene_throttle_max_bps", 0); 188 sceneThrottleBps = config.GetInt("scene_throttle_max_bps", 0);
189 189