aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorMelanie2009-11-04 04:09:46 +0000
committerMelanie2009-11-04 04:09:46 +0000
commitcfcb5faa4e7ff48b486567c32e07253fabdbc8ec (patch)
treee8be7b9c6179a33d3abc05949f3588ea7e0d3515 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parentPrevent autosplitting of inventory descendents packets. Also reduces the (diff)
downloadopensim-SC_OLD-cfcb5faa4e7ff48b486567c32e07253fabdbc8ec.zip
opensim-SC_OLD-cfcb5faa4e7ff48b486567c32e07253fabdbc8ec.tar.gz
opensim-SC_OLD-cfcb5faa4e7ff48b486567c32e07253fabdbc8ec.tar.bz2
opensim-SC_OLD-cfcb5faa4e7ff48b486567c32e07253fabdbc8ec.tar.xz
Bounce the pacjet items limit back up to 6
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index e26d50a..09c5dfa 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -1264,7 +1264,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1264 // 1264 //
1265 // for one example of this kind of thing. In fact, the Linden servers appear to only send about 1265 // for one example of this kind of thing. In fact, the Linden servers appear to only send about
1266 // 6 to 7 items at a time, so let's stick with 6 1266 // 6 to 7 items at a time, so let's stick with 6
1267 int MAX_ITEMS_PER_PACKET = 5; 1267 int MAX_ITEMS_PER_PACKET = 6;
1268 1268
1269 int totalItems = fetchItems ? items.Count : 0; 1269 int totalItems = fetchItems ? items.Count : 0;
1270 int totalFolders = fetchFolders ? folders.Count : 0; 1270 int totalFolders = fetchFolders ? folders.Count : 0;