aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers
diff options
context:
space:
mode:
authorDiva Canto2011-01-17 11:03:46 -0800
committerDiva Canto2011-01-17 11:03:46 -0800
commit66f99ae2677c4cfc26d2376c1de9e8e5d7022dfd (patch)
tree7eb0158e104960c4d39d70be5fa275c5a570e8d8 /OpenSim/Server/Handlers
parentFix slam bits being lost when editing perms in prim inventory (diff)
downloadopensim-SC_OLD-66f99ae2677c4cfc26d2376c1de9e8e5d7022dfd.zip
opensim-SC_OLD-66f99ae2677c4cfc26d2376c1de9e8e5d7022dfd.tar.gz
opensim-SC_OLD-66f99ae2677c4cfc26d2376c1de9e8e5d7022dfd.tar.bz2
opensim-SC_OLD-66f99ae2677c4cfc26d2376c1de9e8e5d7022dfd.tar.xz
More debug messages to help track the XFF header problem.
Diffstat (limited to 'OpenSim/Server/Handlers')
-rw-r--r--OpenSim/Server/Handlers/Hypergrid/HomeAgentHandlers.cs2
-rw-r--r--OpenSim/Server/Handlers/Simulation/AgentHandlers.cs3
2 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Hypergrid/HomeAgentHandlers.cs b/OpenSim/Server/Handlers/Hypergrid/HomeAgentHandlers.cs
index 0066bd4..814a8d9 100644
--- a/OpenSim/Server/Handlers/Hypergrid/HomeAgentHandlers.cs
+++ b/OpenSim/Server/Handlers/Hypergrid/HomeAgentHandlers.cs
@@ -223,6 +223,8 @@ namespace OpenSim.Server.Handlers.Hypergrid
223 if (ep != null) 223 if (ep != null)
224 return ep.Address.ToString(); 224 return ep.Address.ToString();
225 } 225 }
226 else
227 m_log.WarnFormat("[HOME AGENT HANDLER]: No XFF header");
226 228
227 // Oops 229 // Oops
228 return Util.GetCallerIP(request); 230 return Util.GetCallerIP(request);
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
index 9c41bcb..b572cb3 100644
--- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
+++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
@@ -208,6 +208,9 @@ namespace OpenSim.Server.Handlers.Simulation
208 if (ep != null) 208 if (ep != null)
209 return ep.Address.ToString(); 209 return ep.Address.ToString();
210 } 210 }
211 else
212 m_log.WarnFormat("[AGENT HANDLER]: No XFF header");
213
211 214
212 // Oops 215 // Oops
213 return Util.GetCallerIP(request); 216 return Util.GetCallerIP(request);