From 17b00785ee10a71d290cbcddca9b0152fdf60c8f Mon Sep 17 00:00:00 2001 From: MW Date: Thu, 29 Mar 2007 11:08:42 +0000 Subject: Added lbsa71's http server changes. So it now has a single http listener that passes incoming requests to the correct handler. This means that logins (in sandbox mode) now go through this listener, which for now is listening on the port you set in startup (default 9000). (This needs changing so that the http listener and udp server are not using the same port) --- Servers/IRestHandler.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Servers/IRestHandler.cs (limited to 'Servers/IRestHandler.cs') diff --git a/Servers/IRestHandler.cs b/Servers/IRestHandler.cs new file mode 100644 index 0000000..f269600 --- /dev/null +++ b/Servers/IRestHandler.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenSim.CAPS +{ + public interface IRestHandler + { + string HandleREST(string requestBody, string requestURL, string requestMethod); + } +} -- cgit v1.1