diff options
Diffstat (limited to 'OpenSim/Server/Handlers')
-rw-r--r-- | OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs index ab3250d..b648e12 100644 --- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs +++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | |||
@@ -108,6 +108,11 @@ namespace OpenSim.Server.Handlers.Simulation | |||
108 | DoAgentDelete(request, responsedata, agentID, action, regionID); | 108 | DoAgentDelete(request, responsedata, agentID, action, regionID); |
109 | return responsedata; | 109 | return responsedata; |
110 | } | 110 | } |
111 | else if (method.Equals("DELETECHILD")) | ||
112 | { | ||
113 | DoChildAgentDelete(request, responsedata, agentID, action, regionID); | ||
114 | return responsedata; | ||
115 | } | ||
111 | else | 116 | else |
112 | { | 117 | { |
113 | m_log.InfoFormat("[AGENT HANDLER]: method {0} not supported in agent message", method); | 118 | m_log.InfoFormat("[AGENT HANDLER]: method {0} not supported in agent message", method); |
@@ -320,6 +325,24 @@ namespace OpenSim.Server.Handlers.Simulation | |||
320 | } | 325 | } |
321 | } | 326 | } |
322 | 327 | ||
328 | protected void DoChildAgentDelete(Hashtable request, Hashtable responsedata, UUID id, string action, UUID regionID) | ||
329 | { | ||
330 | m_log.Debug(" >>> DoChildAgentDelete action:" + action + "; RegionID:" + regionID); | ||
331 | |||
332 | GridRegion destination = new GridRegion(); | ||
333 | destination.RegionID = regionID; | ||
334 | |||
335 | if (action.Equals("release")) | ||
336 | ReleaseAgent(regionID, id); | ||
337 | else | ||
338 | m_SimulationService.CloseChildAgent(destination, id); | ||
339 | |||
340 | responsedata["int_response_code"] = HttpStatusCode.OK; | ||
341 | responsedata["str_response_string"] = "OpenSim agent " + id.ToString(); | ||
342 | |||
343 | m_log.Debug("[AGENT HANDLER]: Child Agent Released/Deleted."); | ||
344 | } | ||
345 | |||
323 | protected void DoAgentDelete(Hashtable request, Hashtable responsedata, UUID id, string action, UUID regionID) | 346 | protected void DoAgentDelete(Hashtable request, Hashtable responsedata, UUID id, string action, UUID regionID) |
324 | { | 347 | { |
325 | m_log.Debug(" >>> DoDelete action:" + action + "; RegionID:" + regionID); | 348 | m_log.Debug(" >>> DoDelete action:" + action + "; RegionID:" + regionID); |