aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers
diff options
context:
space:
mode:
authorMelanie2011-03-21 07:57:56 +0000
committerMelanie2011-03-21 07:57:56 +0000
commite4f143fb1c9ef13b024a1ebe8be41ebee6476cac (patch)
tree967eb3af6fd0c5a55997d31bc86c05c7375b18d7 /OpenSim/Framework/Servers
parentDon't send a windlight profile to clients if windlight is not set for (diff)
parentUpgrade SQLite: (diff)
downloadopensim-SC_OLD-e4f143fb1c9ef13b024a1ebe8be41ebee6476cac.zip
opensim-SC_OLD-e4f143fb1c9ef13b024a1ebe8be41ebee6476cac.tar.gz
opensim-SC_OLD-e4f143fb1c9ef13b024a1ebe8be41ebee6476cac.tar.bz2
opensim-SC_OLD-e4f143fb1c9ef13b024a1ebe8be41ebee6476cac.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Framework/Servers')
-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