mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
* LLSDStreamhandler now works.
This commit is contained in:
@@ -31,7 +31,7 @@ namespace OpenSim.Framework.Servers
|
||||
|
||||
public abstract byte[] Handle(string path, Stream request);
|
||||
|
||||
protected BaseStreamHandler(string path, string httpMethod )
|
||||
protected BaseStreamHandler(string httpMethod, string path)
|
||||
{
|
||||
m_httpMethod = httpMethod;
|
||||
m_path = path;
|
||||
|
||||
@@ -23,7 +23,7 @@ namespace OpenSim.Framework.Servers
|
||||
return Encoding.UTF8.GetBytes(responseString);
|
||||
}
|
||||
|
||||
public RestStreamHandler(string httpMethod, string path, RestMethod restMethod) : base( path, httpMethod )
|
||||
public RestStreamHandler(string httpMethod, string path, RestMethod restMethod) : base( httpMethod, path )
|
||||
{
|
||||
m_restMethod = restMethod;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user