diff options
author | Tom | 2011-01-28 16:51:35 -0800 |
---|---|---|
committer | Tom | 2011-01-28 16:51:35 -0800 |
commit | 87ed39c9534809e2b3edd88b22c7ecf126b37e2b (patch) | |
tree | 20b188668c6fa48c22f1f2575c334f4a7ff94c1e /OpenSim/Region/CoreModules | |
parent | Fix a discrepancy vs. SL with parsing x-query-string (diff) | |
download | opensim-SC-87ed39c9534809e2b3edd88b22c7ecf126b37e2b.zip opensim-SC-87ed39c9534809e2b3edd88b22c7ecf126b37e2b.tar.gz opensim-SC-87ed39c9534809e2b3edd88b22c7ecf126b37e2b.tar.bz2 opensim-SC-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.
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 2 |
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 | ||