aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
diff options
context:
space:
mode:
authorDiva Canto2013-07-07 20:43:42 -0700
committerDiva Canto2013-07-07 20:43:42 -0700
commitbbb9af363de5cabf44dec2b5aba6fb386a1e7fad (patch)
tree47a62f60c3e588ccab39551390429f82e8f27b5f /OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
parentTry to normalize the creatorData of scene object parts with the trailing '/'.... (diff)
downloadopensim-SC_OLD-bbb9af363de5cabf44dec2b5aba6fb386a1e7fad.zip
opensim-SC_OLD-bbb9af363de5cabf44dec2b5aba6fb386a1e7fad.tar.gz
opensim-SC_OLD-bbb9af363de5cabf44dec2b5aba6fb386a1e7fad.tar.bz2
opensim-SC_OLD-bbb9af363de5cabf44dec2b5aba6fb386a1e7fad.tar.xz
Print out caller IP when unusual requests are received.
Diffstat (limited to '')
-rw-r--r--OpenSim/Server/Handlers/Simulation/AgentHandlers.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
index 71a9e6f..b01de7a 100644
--- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
+++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
@@ -107,7 +107,7 @@ namespace OpenSim.Server.Handlers.Simulation
107 } 107 }
108 else 108 else
109 { 109 {
110 m_log.InfoFormat("[AGENT HANDLER]: method {0} not supported in agent message", method); 110 m_log.InfoFormat("[AGENT HANDLER]: method {0} not supported in agent message (caller is {1})", method, Util.GetCallerIP(request));
111 responsedata["int_response_code"] = HttpStatusCode.MethodNotAllowed; 111 responsedata["int_response_code"] = HttpStatusCode.MethodNotAllowed;
112 responsedata["str_response_string"] = "Method not allowed"; 112 responsedata["str_response_string"] = "Method not allowed";
113 113