aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer
diff options
context:
space:
mode:
authorTom2011-03-21 13:31:22 -0700
committerTom2011-03-21 13:31:22 -0700
commitb70596c15cff42efbb81437b7e5fce9f7d7066b3 (patch)
treebe8927ea7df40430f25fe61c57d1301db8cb20d6 /OpenSim/Framework/Servers/HttpServer
parentSince we've plugged the leak, now increase URLs to 5000 since the limit is be... (diff)
parentMerge branch 'master' into careminster-presence-refactor (diff)
downloadopensim-SC-b70596c15cff42efbb81437b7e5fce9f7d7066b3.zip
opensim-SC-b70596c15cff42efbb81437b7e5fce9f7d7066b3.tar.gz
opensim-SC-b70596c15cff42efbb81437b7e5fce9f7d7066b3.tar.bz2
opensim-SC-b70596c15cff42efbb81437b7e5fce9f7d7066b3.tar.xz
Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs2
-rw-r--r--OpenSim/Framework/Servers/HttpServer/OSHttpHandler.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index 953ed85..ccec9b7 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -633,7 +633,7 @@ namespace OpenSim.Framework.Servers.HttpServer
633 finally 633 finally
634 { 634 {
635 // Every month or so this will wrap and give bad numbers, not really a problem 635 // Every month or so this will wrap and give bad numbers, not really a problem
636 // since its just for reporting, 200ms limit can be adjusted 636 // since its just for reporting, tickdiff limit can be adjusted
637 int tickdiff = Environment.TickCount - tickstart; 637 int tickdiff = Environment.TickCount - tickstart;
638 if (tickdiff > 3000) 638 if (tickdiff > 3000)
639 m_log.InfoFormat( 639 m_log.InfoFormat(
diff --git a/OpenSim/Framework/Servers/HttpServer/OSHttpHandler.cs b/OpenSim/Framework/Servers/HttpServer/OSHttpHandler.cs
index 129a544..2c2b47d 100644
--- a/OpenSim/Framework/Servers/HttpServer/OSHttpHandler.cs
+++ b/OpenSim/Framework/Servers/HttpServer/OSHttpHandler.cs
@@ -83,7 +83,7 @@ namespace OpenSim.Framework.Servers.HttpServer
83 /// <summary> 83 /// <summary>
84 /// Regular expression used to match against path of the 84 /// Regular expression used to match against path of the
85 /// incoming HTTP request. If you want to match any string 85 /// incoming HTTP request. If you want to match any string
86 /// either use '.*' or null. To match on the emtpy string use 86 /// either use '.*' or null. To match on the empty string use
87 /// '^$'. 87 /// '^$'.
88 /// </summary> 88 /// </summary>
89 public virtual Regex Path 89 public virtual Regex Path