diff options
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSimMain.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index 7f13281..7d09c07 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs | |||
@@ -28,6 +28,7 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.IO; | 30 | using System.IO; |
31 | using System.Net; | ||
31 | using System.Reflection; | 32 | using System.Reflection; |
32 | using System.Text; | 33 | using System.Text; |
33 | using System.Threading; | 34 | using System.Threading; |
@@ -681,7 +682,8 @@ namespace OpenSim | |||
681 | /// </summary> | 682 | /// </summary> |
682 | protected class SimStatusHandler : IStreamedRequestHandler | 683 | protected class SimStatusHandler : IStreamedRequestHandler |
683 | { | 684 | { |
684 | public byte[] Handle(string path, Stream request) | 685 | public byte[] Handle(string path, Stream request, |
686 | OSHttpRequest httpRequest, OSHttpResponse httpResponse) | ||
685 | { | 687 | { |
686 | return Encoding.UTF8.GetBytes("OK"); | 688 | return Encoding.UTF8.GetBytes("OK"); |
687 | } | 689 | } |