pulling query handling through the handlers. adding (non-functional,

work-in-progress) HttpHandler.

NOTE: non-active code. does not glow in the dark. non-combustible.
This commit is contained in:
Dr Scofield
2008-07-18 19:28:52 +00:00
parent c0e389cfff
commit 6a7d544497
2 changed files with 4 additions and 2 deletions

View File

@@ -137,10 +137,12 @@ namespace OpenSim.Framework.Servers
/// <param name="contentType">null or content type
/// regex</param>
/// <param name="whitelist">null or IP address regex</param>
public OSHttpHandler(Regex method, Regex path, Dictionary<string, Regex> headers, Regex contentType, Regex whitelist)
public OSHttpHandler(Regex method, Regex path, Dictionary<string, Regex> query,
Dictionary<string, Regex> headers, Regex contentType, Regex whitelist)
{
_method = method;
_path = path;
_query = query;
_ipEndPointRegex = whitelist;
if (null == _headers && null != contentType)