aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorMelanie2010-11-27 19:31:18 +0100
committerMelanie2010-11-27 19:31:18 +0100
commit4765fd9cd0d30c97c4ddfc706aa5daa55e57df32 (patch)
treeea46594b7ddca3bd813c87e71004ec09d03e5a84 /OpenSim/Region
parentMerge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff)
downloadopensim-SC_OLD-4765fd9cd0d30c97c4ddfc706aa5daa55e57df32.zip
opensim-SC_OLD-4765fd9cd0d30c97c4ddfc706aa5daa55e57df32.tar.gz
opensim-SC_OLD-4765fd9cd0d30c97c4ddfc706aa5daa55e57df32.tar.bz2
opensim-SC_OLD-4765fd9cd0d30c97c4ddfc706aa5daa55e57df32.tar.xz
Remove hard limit on prim owners. The new LibOMV autosplits packets to
prevent overflow
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 5419ede..f99fa16 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -4432,14 +4432,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4432 4432
4433 if (notifyCount > 0) 4433 if (notifyCount > 0)
4434 { 4434 {
4435 if (notifyCount > 32) 4435// if (notifyCount > 32)
4436 { 4436// {
4437 m_log.InfoFormat( 4437// m_log.InfoFormat(
4438 "[LAND]: More than {0} avatars own prims on this parcel. Only sending back details of first {0}" 4438// "[LAND]: More than {0} avatars own prims on this parcel. Only sending back details of first {0}"
4439 + " - a developer might want to investigate whether this is a hard limit", 32); 4439// + " - a developer might want to investigate whether this is a hard limit", 32);
4440 4440//
4441 notifyCount = 32; 4441// notifyCount = 32;
4442 } 4442// }
4443 4443
4444 ParcelObjectOwnersReplyPacket.DataBlock[] dataBlock 4444 ParcelObjectOwnersReplyPacket.DataBlock[] dataBlock
4445 = new ParcelObjectOwnersReplyPacket.DataBlock[notifyCount]; 4445 = new ParcelObjectOwnersReplyPacket.DataBlock[notifyCount];