mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
HG agent transfers are starting to work. Gatekeeper handlers are missing.
This commit is contained in:
@@ -109,7 +109,7 @@ namespace OpenSim.Server.Handlers.Hypergrid
|
||||
Hashtable requestData = (Hashtable)request.Params[0];
|
||||
//string host = (string)requestData["host"];
|
||||
//string portstr = (string)requestData["port"];
|
||||
string regionID_str = (string)requestData["regionID"];
|
||||
string regionID_str = (string)requestData["region_uuid"];
|
||||
UUID regionID = UUID.Zero;
|
||||
UUID.TryParse(regionID_str, out regionID);
|
||||
|
||||
|
||||
@@ -59,13 +59,13 @@ namespace OpenSim.Server.Handlers.Simulation
|
||||
|
||||
public Hashtable Handler(Hashtable request)
|
||||
{
|
||||
//m_log.Debug("[CONNECTION DEBUGGING]: AgentHandler Called");
|
||||
m_log.Debug("[CONNECTION DEBUGGING]: AgentHandler Called");
|
||||
|
||||
//m_log.Debug("---------------------------");
|
||||
//m_log.Debug(" >> uri=" + request["uri"]);
|
||||
//m_log.Debug(" >> content-type=" + request["content-type"]);
|
||||
//m_log.Debug(" >> http-method=" + request["http-method"]);
|
||||
//m_log.Debug("---------------------------\n");
|
||||
m_log.Debug("---------------------------");
|
||||
m_log.Debug(" >> uri=" + request["uri"]);
|
||||
m_log.Debug(" >> content-type=" + request["content-type"]);
|
||||
m_log.Debug(" >> http-method=" + request["http-method"]);
|
||||
m_log.Debug("---------------------------\n");
|
||||
|
||||
Hashtable responsedata = new Hashtable();
|
||||
responsedata["content_type"] = "text/html";
|
||||
|
||||
Reference in New Issue
Block a user