aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorTom2011-01-28 16:51:35 -0800
committerTom2011-01-28 16:51:35 -0800
commit87ed39c9534809e2b3edd88b22c7ecf126b37e2b (patch)
tree20b188668c6fa48c22f1f2575c334f4a7ff94c1e
parentFix a discrepancy vs. SL with parsing x-query-string (diff)
downloadopensim-SC_OLD-87ed39c9534809e2b3edd88b22c7ecf126b37e2b.zip
opensim-SC_OLD-87ed39c9534809e2b3edd88b22c7ecf126b37e2b.tar.gz
opensim-SC_OLD-87ed39c9534809e2b3edd88b22c7ecf126b37e2b.tar.bz2
opensim-SC_OLD-87ed39c9534809e2b3edd88b22c7ecf126b37e2b.tar.xz
Significantly increase the total number of URL's available. In second life, the limit is 15,000 URL's (one per prim), so i'd hope we can manage 1k.
-rw-r--r--OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
index 302a192..b83eb90 100644
--- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
@@ -76,7 +76,7 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
76 new Dictionary<string, UrlData>(); 76 new Dictionary<string, UrlData>();
77 77
78 78
79 private int m_TotalUrls = 100; 79 private int m_TotalUrls = 1000;
80 80
81 private IHttpServer m_HttpServer = null; 81 private IHttpServer m_HttpServer = null;
82 82