aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-16 12:20:01 -0700
committerJohn Hurliman2009-10-16 12:20:01 -0700
commita18489dc9badfccd775145f5a1a800a763d0c554 (patch)
treef855a444bf0e4ea33511838bf0b648a9267ec8c2 /OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
parentUpdating OpenSim.ini.example with the section required to enable a useful pri... (diff)
downloadopensim-SC_OLD-a18489dc9badfccd775145f5a1a800a763d0c554.zip
opensim-SC_OLD-a18489dc9badfccd775145f5a1a800a763d0c554.tar.gz
opensim-SC_OLD-a18489dc9badfccd775145f5a1a800a763d0c554.tar.bz2
opensim-SC_OLD-a18489dc9badfccd775145f5a1a800a763d0c554.tar.xz
* Change appearance packets from State to Task. This will hopefully fix the cloud issues
* Changed the throttling logic to obey the requested client bandwidth limit but also share bandwidth between some of the categories to improve throughput on high prim or heavily trafficked regions
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs')
-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 545a0bc..ee3e754 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -513,7 +513,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
513 IClientAPI client; 513 IClientAPI client;
514 if (!m_scene.ClientManager.TryGetValue(address, out client) || !(client is LLClientView)) 514 if (!m_scene.ClientManager.TryGetValue(address, out client) || !(client is LLClientView))
515 { 515 {
516 m_log.Warn("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + 516 m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address +
517 " in " + m_scene.RegionInfo.RegionName + ", currently tracking " + m_scene.ClientManager.Count + " clients"); 517 " in " + m_scene.RegionInfo.RegionName + ", currently tracking " + m_scene.ClientManager.Count + " clients");
518 return; 518 return;
519 } 519 }